diff options
author | Araq <rumpf_a@web.de> | 2014-01-20 20:07:44 +0100 |
---|---|---|
committer | Araq <rumpf_a@web.de> | 2014-01-20 20:07:44 +0100 |
commit | 4a0aadef4d1eef2920bd84cbc532b607741a239a (patch) | |
tree | 0202cba6e947e3afb66d4093de0c71214d625c0c /tests/parser | |
parent | d18f40b4e2ea594d10c654616b95b038f808b8ed (diff) | |
download | Nim-4a0aadef4d1eef2920bd84cbc532b607741a239a.tar.gz |
parser support anon iterators
Diffstat (limited to 'tests/parser')
-rw-r--r-- | tests/parser/tdomulttest.nim | 17 | ||||
-rw-r--r-- | tests/parser/tinvwhen.nim | 15 |
2 files changed, 32 insertions, 0 deletions
diff --git a/tests/parser/tdomulttest.nim b/tests/parser/tdomulttest.nim new file mode 100644 index 000000000..4ee6de128 --- /dev/null +++ b/tests/parser/tdomulttest.nim @@ -0,0 +1,17 @@ +discard """ + file: "tdomulttest.nim" + output: "555\ntest\nmulti lines\n99999999\nend" + disabled: true +""" +proc foo(bar, baz: proc (x: int): int) = + echo bar(555) + echo baz(99999999) + +foo do (x: int) -> int: + return x +do (x: int) -> int: + echo("test") + echo("multi lines") + return x + +echo("end") \ No newline at end of file diff --git a/tests/parser/tinvwhen.nim b/tests/parser/tinvwhen.nim new file mode 100644 index 000000000..5ff94cc6c --- /dev/null +++ b/tests/parser/tinvwhen.nim @@ -0,0 +1,15 @@ +discard """ + file: "tinvwhen.nim" + line: 11 + errormsg: "invalid indentation" +""" +# This was parsed even though it should not! + +proc chdir(path: cstring): cint {.importc: "chdir", header: "dirHeader".} + +proc getcwd(buf: cstring, buflen: cint): cstring + when defined(unix): {.importc: "getcwd", header: "<unistd.h>".} #ERROR_MSG invalid indentation + elif defined(windows): {.importc: "getcwd", header: "<direct.h>"} + else: {.error: "os library not ported to your OS. Please help!".} + + |