diff options
Diffstat (limited to 'tests/ui/async-await/issue-73541.rs')
-rw-r--r-- | tests/ui/async-await/issue-73541.rs | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/tests/ui/async-await/issue-73541.rs b/tests/ui/async-await/issue-73541.rs new file mode 100644 index 000000000..399a07cd3 --- /dev/null +++ b/tests/ui/async-await/issue-73541.rs @@ -0,0 +1,9 @@ +fn main() { + 'a: loop { + || { + loop { continue 'a } + //~^ ERROR use of unreachable label `'a` + }; + + } +} |