aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/rust/compile/issue-3657.rs
blob: 978f3ce336fb1b01e1fa6bdfe283e85ab32375ed (plain)
1
2
3
4
5
6
7
8
struct Foo<'_>(&'_ u8);

impl Foo<'a> {
    // { dg-error "unresolved lifetime" "" { target *-*-* } .-1 }
    fn x() {}
}

fn x() {}