rust/tests/target/issue_5676.rs
2023-08-13 14:03:58 -05:00

9 lines
108 B
Rust

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