tforloop_tuple_multiple_underscore.nim 193 B

1234567891011
  1. discard """
  2. errormsg: "the special identifier '_' is ignored in declarations and cannot be used"
  3. """
  4. iterator iter(): (int, int, int) =
  5. yield (1, 1, 2)
  6. for (_, i, _) in iter():
  7. echo _