rust/tests/ui/error-codes/E0426.rs

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

7 lines
75 B
Rust
Raw Normal View History

2016-08-18 05:45:10 +08:00
fn main () {
loop {
break 'a;
//~^ ERROR E0426
2016-08-18 05:45:10 +08:00
}
}