diff options
author | ringabout <43030857+ringabout@users.noreply.github.com> | 2022-11-24 14:31:47 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-11-24 07:31:47 +0100 |
commit | ef2998778138fd0b9a102a1c48c1eacd98361105 (patch) | |
tree | a7a6b86bc0e0d2562c731120eb8bb687c77c180a /tests/iter/titer_issues.nim | |
parent | d149727f3433e2c9dc1d84b6540a8abf6a864fd2 (diff) | |
download | Nim-ef2998778138fd0b9a102a1c48c1eacd98361105.tar.gz |
An unnamed break in a block now gives an `UnnamedBreak` warning (#20901)
* unnamed break in the block now gives an error * bootstrap * fixes * more fixes * break with label * label again * one moee * Delete test5.txt * it now gives a UnnamedBreak warning * change the URL of bump back to the original one
Diffstat (limited to 'tests/iter/titer_issues.nim')
-rw-r--r-- | tests/iter/titer_issues.nim | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/iter/titer_issues.nim b/tests/iter/titer_issues.nim index 7dee9792d..adba8a8e3 100644 --- a/tests/iter/titer_issues.nim +++ b/tests/iter/titer_issues.nim @@ -369,9 +369,9 @@ block: # bug #18824 iterator poc_iterator: int {.closure.} = - block: + block bug18824: try: - break + break bug18824 finally: echo "In defer" |