diff options
author | Ico Doornekamp <ico@pruts.nl> | 2019-05-20 15:22:42 +0200 |
---|---|---|
committer | Andreas Rumpf <rumpf_a@web.de> | 2019-05-20 15:22:42 +0200 |
commit | c01f7bfdaf674a6e1e8be32b6731aee3275fe19f (patch) | |
tree | 7cbe6a50f7bbe9f8d0383b29d57744e380ccb5ff /tests/iter/treciter.nim | |
parent | aeb6ec27dec21509eebf5aa1a78b82b184117450 (diff) | |
download | Nim-c01f7bfdaf674a6e1e8be32b6731aee3275fe19f.tar.gz |
More specific error message for unsupported recursion in iterators (#11283)
Diffstat (limited to 'tests/iter/treciter.nim')
-rw-r--r-- | tests/iter/treciter.nim | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/iter/treciter.nim b/tests/iter/treciter.nim index 7b61326f4..11fb58224 100644 --- a/tests/iter/treciter.nim +++ b/tests/iter/treciter.nim @@ -1,5 +1,5 @@ discard """ - errormsg: "recursive dependency: \'myrec\'" + errormsg: "recursion is not supported in iterators: 'myrec'" file: "treciter.nim" line: 9 """ |