mirror of
https://github.com/rust-lang/rust.git
synced 2026-01-20 15:10:38 +00:00
9 lines
123 B
Rust
9 lines
123 B
Rust
//@ run-fail
|
|
//@ error-pattern:explicit panic
|
|
//@ needs-subprocess
|
|
|
|
pub fn main() {
|
|
panic!();
|
|
println!("{}", 1);
|
|
}
|