mirror of
https://github.com/rust-lang/rust.git
synced 2025-10-03 10:47:16 +00:00
11 lines
195 B
Rust
11 lines
195 B
Rust
//! 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);
|
|
}
|