blob: 91f69f0a69e3599f39a707803d1df11e7ada41db (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
// 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");
}
|