summaryrefslogtreecommitdiffstats
path: root/src/test/ui/lifetimes/lifetime-errors/ex3-both-anon-regions-both-are-structs-earlybound-regions.rs
blob: 9b8cfe670e612eaf510ea6e74c764ec476354c25 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
struct Ref<'a> {
    x: &'a u32,
}

fn foo<'a, 'b>(mut x: Vec<Ref<'a>>, y: Ref<'b>)
    where &'a (): Sized,
          &'b u32: Sized
{
    x.push(y);
    //~^ ERROR lifetime may not live long enough
}

fn main() {}