summaryrefslogtreecommitdiffstats
path: root/src/test/ui/associated-types/issue-22037.rs
blob: b9eb41b6ea6e58735ba4b72a824bde6ab86af357 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
trait A {
    type Output;
    fn a(&self) -> <Self as A>::X;
    //~^ ERROR cannot find associated type `X` in trait `A`
}

impl A for u32 {
    type Output = u32;
    fn a(&self) -> u32 {
        0
    }
}

fn main() {
    let a: u32 = 0;
    let b: u32 = a.a();
}