rust/tests/ui/implied-bounds/implied-bounds-on-nested-references-plus-variance-2.rs
Michael Goulet 67804c57e7 Adjust tests
2024-09-05 06:37:38 -04:00

14 lines
274 B
Rust

//@ check-pass
//@ known-bug: #25860
static UNIT: &'static &'static () = &&();
fn foo<'a, 'b, T>(_: &'a &'b (), v: &'b T, _: &()) -> &'a T { v }
fn bad<'a, T>(x: &'a T) -> &'static T {
let f: fn(_, &'a T, &()) -> &'static T = foo;
f(UNIT, x, &())
}
fn main() {}