break&continue

This commit is contained in:
Aleksey Kladov 2018-08-24 11:21:13 +03:00
parent a66c94af1b
commit 719710a132
8 changed files with 156 additions and 13 deletions

View file

@ -0,0 +1,6 @@
fn foo() {
loop {
continue;
continue 'l;
}
}