diff options
author | Araq <rumpf_a@web.de> | 2015-11-29 15:00:19 +0100 |
---|---|---|
committer | Araq <rumpf_a@web.de> | 2015-12-01 00:53:30 +0100 |
commit | 217e0ab6e9aecc3d8254446e06bed816e7efe6a2 (patch) | |
tree | 4d1dcc8e6d24e0db17aea5679090271f14a422b8 /tests | |
parent | d7433d02bc3bcaa30baf47aa08288f7b91824c11 (diff) | |
download | Nim-217e0ab6e9aecc3d8254446e06bed816e7efe6a2.tar.gz |
lambda lifting support for iterToProc plugin
Diffstat (limited to 'tests')
-rw-r--r-- | tests/iter/titerable.nim | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/tests/iter/titerable.nim b/tests/iter/titerable.nim index 3ec79f68d..fc1a8f934 100644 --- a/tests/iter/titerable.nim +++ b/tests/iter/titerable.nim @@ -6,8 +6,11 @@ discard """ 8 12 ''' + disabled: "true" """ +# Will eventually fix it... + iterator map[T, U](s: iterator:T{.inline.}, f: proc(x: T): U): U = for e in s: yield f(e) |