blob: b9eb41b6ea6e58735ba4b72a824bde6ab86af357 [file] [log] [blame]
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();
}