rust/tests/crashes/121623.rs

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

9 lines
112 B
Rust
Raw Normal View History

//@ known-bug: #121623
fn main() {
match () {
_ => 'b: {
continue 'b;
}
}
}