mirror of
https://git.proxmox.com/git/rustc
synced 2025-05-02 17:25:45 +00:00
11 lines
151 B
Rust
11 lines
151 B
Rust
// run-fail
|
|
// error-pattern:oops
|
|
// ignore-emscripten no processes
|
|
|
|
fn main() {
|
|
let func = || -> ! {
|
|
panic!("oops");
|
|
};
|
|
func();
|
|
}
|