blob: 87389c0ffb4201bf6b61705170ec68360b08d71c (
plain)
1
2
3
4
5
6
7
8
9
10
|
//! 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);
}
|