summary refs log tree commit diff
path: root/src/test/ui/issues/issue-26217.rs
blob: 05e046219090689560f741ceee2bf004e952062e (plain)
1
2
3
4
5
6
7
8
9
10
fn foo<T>() where for<'a> T: 'a {}

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

fn main() {
    bar();
}