mirror of
https://git.proxmox.com/git/rustc
synced 2025-08-16 23:31:07 +00:00
12 lines
148 B
Rust
12 lines
148 B
Rust
// Issue #7580
|
|
|
|
//@ run-fail
|
|
//@ error-pattern:panic works
|
|
//@ ignore-emscripten no processes
|
|
|
|
use std::*;
|
|
|
|
fn main() {
|
|
panic!("panic works")
|
|
}
|