Get rid of tkUnderscore. Map _ to tkSymbol.

This commit is contained in:
Dominik Picheta
2015-04-08 20:08:45 +01:00
parent c35fc2bb03
commit ea505f3613
4 changed files with 9 additions and 13 deletions

View File

@@ -10,6 +10,9 @@ var (x, _, y) = foo()
doAssert x == 4
doAssert y == 3
var (a, _, _) = foo()
doAssert a == 4
iterator bar(): tuple[x, y, z: int] =
yield (1,2,3)