diff options
author | Araq <rumpf_a@web.de> | 2012-07-19 16:38:46 +0200 |
---|---|---|
committer | Araq <rumpf_a@web.de> | 2012-07-19 16:38:46 +0200 |
commit | 98fd408adc1035fbd4ac8256f4c87acf5a9c62ae (patch) | |
tree | 2996455d0dae626135bcb91098c0af99f2b8d010 /tests/compile | |
parent | c9513c2e5a42e6a34e11568a708d3db80d2b6283 (diff) | |
download | Nim-98fd408adc1035fbd4ac8256f4c87acf5a9c62ae.tar.gz |
implemented #133
Diffstat (limited to 'tests/compile')
-rwxr-xr-x | tests/compile/trectuple.nim | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/tests/compile/trectuple.nim b/tests/compile/trectuple.nim index 4d5febbfa..7c43ec5ba 100755 --- a/tests/compile/trectuple.nim +++ b/tests/compile/trectuple.nim @@ -1,7 +1,9 @@ type PNode = ref TNode - TNode = tuple[self: PNode] + TNode = tuple # comment + self: PNode # comment + a, b: int # comment var node: PNode new(node) |