rust/tests/ui/thir-print/break-outside-loop-error-83048.rs
2025-08-17 13:01:02 -04:00

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]
}