blob: 7cdbb22f9245960bcdf243e676c9c7c14a1a7da6 [file] [log] [blame]
// build-pass
// Using labeled break in a while loop has caused an illegal instruction being
// generated, and an ICE later.
//
// See https://github.com/rust-lang/rust/issues/51350 for more information.
const CRASH: () = 'a: while break 'a {};
fn main() {}