mirror of
https://github.com/rust-lang/rust.git
synced 2025-12-01 15:58:01 +00:00
7 lines
183 B
Rust
7 lines
183 B
Rust
// https://github.com/rust-lang/rust/issues/83048
|
|
//@ compile-flags: -Z unpretty=thir-tree
|
|
|
|
pub fn main() {
|
|
break; //~ ERROR: `break` outside of a loop or labeled block [E0268]
|
|
}
|