rust/tests/crashes/113379.rs

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

8 lines
95 B
Rust
Raw Normal View History

//@ known-bug: #113379
async fn f999() -> Vec<usize> {
'b: {
continue 'b;
}
}