rust/src/test/ui/issues/issue-26217.rs
2018-12-25 21:08:33 -07:00

7 lines
149 B
Rust

fn foo<T>() where for<'a> T: 'a {}
fn main<'a>() {
foo::<&'a i32>();
//~^ ERROR the type `&'a i32` does not fulfill the required lifetime
}