diff options
Diffstat (limited to 'nimpretty/tests/expected/simple3.nim')
-rw-r--r-- | nimpretty/tests/expected/simple3.nim | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/nimpretty/tests/expected/simple3.nim b/nimpretty/tests/expected/simple3.nim new file mode 100644 index 000000000..c1c0af449 --- /dev/null +++ b/nimpretty/tests/expected/simple3.nim @@ -0,0 +1,15 @@ + +#[ +foo bar +]# + + + +proc fun() = + echo "ok1" + +proc fun2(a = "fooo" & "bar" & "bar" & "bar" & "bar" & ("bar" & "bar" & "bar") & + "bar" & "bar" & "bar" & "bar" & "bar" & "bar" & "bar" & "bar" & "bar"): auto = + discard + +fun2() |