diff options
author | Araq <rumpf_a@web.de> | 2014-12-15 02:15:11 +0100 |
---|---|---|
committer | Araq <rumpf_a@web.de> | 2014-12-15 02:15:11 +0100 |
commit | 61c5c92f097a624bb0fdfc26b3d19005eac1dd35 (patch) | |
tree | 70f1f6114875a32af37ee416bb37b8fe5d411510 /tests | |
parent | 516a4d933f9b5e87c670565dc03bdc755896bb2b (diff) | |
download | Nim-61c5c92f097a624bb0fdfc26b3d19005eac1dd35.tar.gz |
fixes #1656
Diffstat (limited to 'tests')
-rw-r--r-- | tests/iter/tchainediterators.nim | 2 | ||||
-rw-r--r-- | tests/metatype/tsemistatic.nim | 1 |
2 files changed, 2 insertions, 1 deletions
diff --git a/tests/iter/tchainediterators.nim b/tests/iter/tchainediterators.nim index 18d096761..8d9f44a54 100644 --- a/tests/iter/tchainediterators.nim +++ b/tests/iter/tchainediterators.nim @@ -28,7 +28,7 @@ iterator foo[T](x: iterator: T{.inline.}): T = var s = @[1, 2, 3] -# pass an interator several levels deep: +# pass an iterator several levels deep: for x in s.items.foo: echo x diff --git a/tests/metatype/tsemistatic.nim b/tests/metatype/tsemistatic.nim index d187f153c..0a003be03 100644 --- a/tests/metatype/tsemistatic.nim +++ b/tests/metatype/tsemistatic.nim @@ -1,6 +1,7 @@ discard """ msg: "static 10\ndynamic\nstatic 20\n" output: "s\nd\nd\ns" + disabled: "true" """ proc foo(x: semistatic[int]) = |