rust/tests/ui/issues/issue-50802.rs

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

9 lines
116 B
Rust
Raw Normal View History

#[allow(unreachable_code)]
fn main() {
loop {
break while continue { //~ ERROR E0590
}
}
}