mirror of
https://github.com/rust-lang/rust.git
synced 2025-05-12 18:07:40 +00:00
13 lines
238 B
Rust
13 lines
238 B
Rust
//@ run-fail
|
|
//@ error-pattern:greetings from the panic handler
|
|
//@ needs-subprocess
|
|
|
|
use std::panic;
|
|
|
|
fn main() {
|
|
panic::set_hook(Box::new(|i| {
|
|
eprintln!("greetings from the panic handler");
|
|
}));
|
|
panic!("foobar");
|
|
}
|