t1027.nim 356 B

1234567891011121314151617181920212223
  1. discard """
  2. cmd: "nim check --hints:off $file"
  3. errormsg: ""
  4. nimout: '''
  5. t1027.nim(20, 19) Error: ambiguous identifier: 'version_str' -- use one of the following:
  6. m1027a.version_str: string
  7. m1027b.version_str: string
  8. '''
  9. """
  10. import m1027a, m1027b
  11. # bug #1027
  12. template wrap_me(stuff): untyped =
  13. echo "Using " & version_str
  14. wrap_me("hey")