rust/tests/target/issue_5676.rs

9 lines
108 B
Rust

fn main() {
match true {
true => 'a: {
break 'a;
}
_ => (),
}
}