2020-04-16 01:50:32 -05:00
|
|
|
// run-fail
|
2015-03-30 03:56:24 -05:00
|
|
|
// error-pattern:quux
|
2020-05-07 10:39:02 -05:00
|
|
|
// ignore-emscripten no processes
|
2020-04-16 01:50:32 -05:00
|
|
|
|
2016-05-26 21:39:36 -05:00
|
|
|
fn foo() -> ! {
|
|
|
|
panic!("quux");
|
|
|
|
}
|
2017-10-21 11:41:27 -05:00
|
|
|
|
2014-10-24 14:17:50 -05:00
|
|
|
fn main() {
|
2015-03-30 03:56:24 -05:00
|
|
|
foo() == foo(); // these types wind up being defaulted to ()
|
2014-10-24 14:17:50 -05:00
|
|
|
}
|