tunderscore1.nim 171 B

123456789101112
  1. discard """
  2. errormsg: "the special identifier '_' is ignored in declarations and cannot be used"
  3. """
  4. # issue #12094, #13804
  5. template foo =
  6. let _ = 1
  7. echo _
  8. foo()