rust/tests/ui/nll/relate_tys/hr-fn-aba-as-aaa.rs

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

16 lines
402 B
Rust
Raw Normal View History

2018-07-23 09:30:59 -05:00
// 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.
//
2020-01-22 18:00:00 -06:00
// check-pass
2018-07-23 09:30:59 -05:00
// compile-flags:-Zno-leak-check
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);
}