mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-01 06:51:58 +00:00
13 lines
249 B
Rust
13 lines
249 B
Rust
// run-fail
|
|
// error-pattern:greetings from the panic handler
|
|
// ignore-emscripten no processes
|
|
|
|
use std::panic;
|
|
|
|
fn main() {
|
|
panic::set_hook(Box::new(|i| {
|
|
eprintln!("greetings from the panic handler");
|
|
}));
|
|
panic!("foobar");
|
|
}
|