diff options
Diffstat (limited to 'tests/parser/tstatementoperators.nim')
-rw-r--r-- | tests/parser/tstatementoperators.nim | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/tests/parser/tstatementoperators.nim b/tests/parser/tstatementoperators.nim new file mode 100644 index 000000000..d2b85bb4b --- /dev/null +++ b/tests/parser/tstatementoperators.nim @@ -0,0 +1,12 @@ +discard """ + nimout: ''' +Infix + Ident "from" + Ident "a" + Ident "b" +''' +""" + +from macros import dumpTree + +dumpTree(a from b) \ No newline at end of file |