diff options
Diffstat (limited to 'tests/parser/tprocexprasstmt.nim')
-rw-r--r-- | tests/parser/tprocexprasstmt.nim | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/tests/parser/tprocexprasstmt.nim b/tests/parser/tprocexprasstmt.nim new file mode 100644 index 000000000..a02dde6f6 --- /dev/null +++ b/tests/parser/tprocexprasstmt.nim @@ -0,0 +1,3 @@ +func r(): auto = + func(): int = 2 +discard r()() |