mirror of
https://git.proxmox.com/git/rustc
synced 2025-08-16 06:42:22 +00:00
12 lines
190 B
Rust
12 lines
190 B
Rust
//@ run-fail
|
|
//@ error-pattern:quux
|
|
//@ ignore-emscripten no processes
|
|
|
|
fn foo() -> ! {
|
|
panic!("quux");
|
|
}
|
|
|
|
fn main() {
|
|
foo() == foo(); // these types wind up being defaulted to ()
|
|
}
|