summaryrefslogtreecommitdiffstats
path: root/src/test/ui/lifetimes/lifetime-errors/ex3-both-anon-regions-using-impl-items.rs
blob: 73e1789f225271f5fcb891625f40397e97fa601e (plain)
1
2
3
4
5
6
7
8
9
10
trait Foo {
    fn foo<'a>(x: &mut Vec<&u8>, y: &u8);
}
impl Foo for () {
    fn foo(x: &mut Vec<&u8>, y: &u8) {
        x.push(y);
        //~^ ERROR lifetime may not live long enough
    }
}
fn main() {}