blob: 87389c0ffb4201bf6b61705170ec68360b08d71c [file] [log] [blame]
//! Regression test for https://github.com/rust-lang/rust/issues/12920
//@ run-fail
//@ error-pattern:explicit panic
//@ needs-subprocess
pub fn main() {
panic!();
println!("{}", 1);
}