diff options
author | Arne Döring <arne.doering@gmx.net> | 2019-05-21 21:31:40 +0200 |
---|---|---|
committer | Andreas Rumpf <rumpf_a@web.de> | 2019-05-21 21:31:40 +0200 |
commit | f94ec363abf5b1393014a0bca7202c405512cddd (patch) | |
tree | 54f54dfe076dfa9e70af430521c574517edddb7d /tests/fields | |
parent | 68b5e3e3fe8c4bf314d31d18c147650db99b4f7d (diff) | |
download | Nim-f94ec363abf5b1393014a0bca7202c405512cddd.tar.gz |
Allow void macro result (#11286)
* allow void macro result * add test for void macro result type
Diffstat (limited to 'tests/fields')
-rw-r--r-- | tests/fields/tfields.nim | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/fields/tfields.nim b/tests/fields/tfields.nim index d52b5e8d2..0bf3a4e1a 100644 --- a/tests/fields/tfields.nim +++ b/tests/fields/tfields.nim @@ -46,7 +46,7 @@ block ttemplate: for name, value in (n: "v").fieldPairs: echo name - template wrapper: typed = + template wrapper(): void = for name, value in (n: "v").fieldPairs: echo name wrapper() |