mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-01 15:01:51 +00:00
13 lines
241 B
Rust
13 lines
241 B
Rust
// Make sure that label for continue and break is spanned correctly
|
|
|
|
fn main() {
|
|
loop {
|
|
continue
|
|
'b //~ ERROR use of undeclared label
|
|
;
|
|
break
|
|
'c //~ ERROR use of undeclared label
|
|
;
|
|
}
|
|
}
|