blob: 2e9eff59386de53497a70c29ff598deba9873caf (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
// Test that the NLL `relate_tys` code correctly deduces that a
// function returning always its first argument can be upcast to one
// that returns either first or second argument.
//
// check-pass
// compile-flags:-Zno-leak-check
#![allow(dropping_copy_types)]
fn make_it() -> for<'a, 'b> fn(&'a u32, &'b u32) -> &'a u32 {
panic!()
}
fn main() {
let a: for<'a> fn(&'a u32, &'a u32) -> &'a u32 = make_it();
drop(a);
}
|