t3482.nim 280 B

12345678910111213141516
  1. discard """
  2. action: reject
  3. nimout: "t3482.nim(13, 8) Error: undeclared identifier: 'output'"
  4. """
  5. # bug #3482 (correct behavior since 1.4.0, cgen error in 1.2.0)
  6. template foo*(body: typed) =
  7. if true:
  8. body
  9. proc test =
  10. foo:
  11. var output = ""
  12. echo output.len
  13. test()