We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
iterator iter(): (int, int) = yield (1, 0) iterator other(): int = for (i,) in iter(): yield i
test.nim(4, 7) Error: illformed AST: (i)
An error that the (i, _) form should be used or something similar. Accepting this is also an option.
(i, _)