blob: 422625e73c161c88592962706bcbabe6227c9212 [file] [log] [blame] [edit]
fn foo<T>() where for<'a> T: 'a {}
fn bar<'a>() {
foo::<&'a i32>();
//~^ ERROR lifetime may not live long enough
}
fn main() {
bar();
}