blob: d15b0a9cd726f7426f96dc38cc6a6d8772643eff [file] [log] [blame]
//@ run-fail
//@ error-pattern:explicit panic
//@ needs-subprocess
fn main() {
let _x = match true {
false => 0,
true => panic!(),
};
}