mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-01 15:01:51 +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 ()
|
|
}
|