2018-07-23 09:30:59 -05:00
|
|
|
// Test that the NLL `relate_tys` code correctly deduces that a
|
|
|
|
// function returning either argument CANNOT be upcast to one
|
|
|
|
// that returns always its first argument.
|
|
|
|
//
|
|
|
|
// compile-flags:-Zno-leak-check
|
|
|
|
|
|
|
|
fn make_it() -> for<'a> fn(&'a u32, &'a u32) -> &'a u32 {
|
|
|
|
panic!()
|
|
|
|
}
|
|
|
|
|
2018-09-05 15:23:45 -05:00
|
|
|
fn foo() {
|
2018-07-23 09:30:59 -05:00
|
|
|
let a: for<'a, 'b> fn(&'a u32, &'b u32) -> &'a u32 = make_it();
|
2021-03-07 09:08:52 -06:00
|
|
|
//~^ ERROR mismatched types [E0308]
|
2018-07-23 09:30:59 -05:00
|
|
|
drop(a);
|
|
|
|
}
|
2018-09-05 15:23:45 -05:00
|
|
|
|
|
|
|
fn bar() {
|
|
|
|
// The code path for patterns is mildly different, so go ahead and
|
|
|
|
// test that too:
|
|
|
|
let _: for<'a, 'b> fn(&'a u32, &'b u32) -> &'a u32 = make_it();
|
2021-03-07 09:08:52 -06:00
|
|
|
//~^ ERROR mismatched types [E0308]
|
2018-09-05 15:23:45 -05:00
|
|
|
}
|
|
|
|
|
2021-03-07 09:08:52 -06:00
|
|
|
fn main() {}
|