diff options
author | Araq <rumpf_a@web.de> | 2014-02-24 01:30:40 +0100 |
---|---|---|
committer | Araq <rumpf_a@web.de> | 2014-02-24 01:30:40 +0100 |
commit | 0c31686fec4b3b5db1335d14142ea91a82954f7a (patch) | |
tree | 9c515468d4daace655377b5255cd659ac57a8ef1 /tests | |
parent | efc21baeb99ace615887117c43aa8bf92b534848 (diff) | |
download | Nim-0c31686fec4b3b5db1335d14142ea91a82954f7a.tar.gz |
new VM is getting stable
Diffstat (limited to 'tests')
-rw-r--r-- | tests/macros/tmacro5.nim | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/macros/tmacro5.nim b/tests/macros/tmacro5.nim index 39324e497..9882ad90d 100644 --- a/tests/macros/tmacro5.nim +++ b/tests/macros/tmacro5.nim @@ -51,7 +51,7 @@ macro okayy:stmt = for node in decls: result.add node for node in impls: result.add node -importimpl(Item, int): +importImpl(Item, int): echo 42 importImpl(Foo, int16): echo 77 |