rust/src/test/ui/issues/issue-22037.rs
2018-12-25 21:08:33 -07:00

17 lines
267 B
Rust

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();
}