mirror of
https://github.com/rust-lang/rust.git
synced 2025-02-04 19:12:50 +00:00
12 lines
188 B
Rust
12 lines
188 B
Rust
// run-fail
|
|
// error-pattern:thread 'main' panicked
|
|
// error-pattern:foobar
|
|
// ignore-emscripten no processes
|
|
|
|
use std::panic;
|
|
|
|
fn main() {
|
|
panic::take_hook();
|
|
panic!("foobar");
|
|
}
|