aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/rust/compile/issue-3974.rs
blob: dfd693a51b1bfdadcadf0a613fbdae4f38e00bd8 (plain)
1
2
3
4
5
6
7
8
impl<'a, F> RunUntil<'a, F> {
    // { dg-error "could not resolve type path" "" { target *-*-* } .-1 }
    fn project<'pin>() -> Projection<'pin, 'a, F> {
        // { dg-error "could not resolve type path" "" { target *-*-* } .-1 }
        Self!()
        // { dg-error "could not resolve macro invocation" "" { target *-*-* } .-1 }
    }
}