blob: 02f1599338b669c92a0219d83b98b7d3366f5f31 [file] [log] [blame]
//@ run-fail
//@ error-pattern:thread 'main' panicked
//@ error-pattern:foobar
//@ ignore-emscripten no processes
use std::panic;
fn main() {
panic::set_hook(Box::new(|i| {
eprint!("greetings from the panic handler");
}));
panic::take_hook();
panic!("foobar");
}