mirror of
https://git.proxmox.com/git/rustc
synced 2026-01-21 12:46:57 +00:00
15 lines
285 B
Rust
15 lines
285 B
Rust
// 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");
|
|
}
|