mirror of
https://git.proxmox.com/git/rustc
synced 2025-08-15 05:04:23 +00:00
8 lines
153 B
Rust
8 lines
153 B
Rust
//@ run-fail
|
|
//@ error-pattern:internal error: entered unreachable code: uhoh
|
|
//@ ignore-emscripten no processes
|
|
|
|
fn main() {
|
|
unreachable!("uhoh")
|
|
}
|