mirror of
https://git.proxmox.com/git/rustc
synced 2025-05-02 15:13:48 +00:00
13 lines
155 B
Rust
13 lines
155 B
Rust
// run-fail
|
|
// error-pattern:explicit panic
|
|
// ignore-emscripten no processes
|
|
|
|
fn failfn() {
|
|
panic!();
|
|
}
|
|
|
|
fn main() {
|
|
Box::new(0);
|
|
failfn();
|
|
}
|