DEBSOURCES
Skip Quicknav
sources / rustc / 1.85.0%2Bdfsg3-1 / tests / ui / issues / issue-26217.rs
12345678910
fn foo<T>() where for<'a> T: 'a {} fn bar<'a>() { foo::<&'a i32>(); //~^ ERROR lifetime may not live long enough } fn main() { bar(); }