2015-03-30 03:56:24 -05:00
|
|
|
// error-pattern:quux
|
2016-05-26 21:39:36 -05:00
|
|
|
fn foo() -> ! {
|
|
|
|
panic!("quux");
|
|
|
|
}
|
2017-10-21 11:41:27 -05:00
|
|
|
|
|
|
|
#[allow(resolve_trait_on_defaulted_unit)]
|
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
|
|
|
}
|