]> git.lizzy.rs Git - rust.git/blob - tests/ui/suggestions/assoc-type-in-method-return.rs
Merge commit '7f27e2e74ef957baa382dc05cf08df6368165c74' into clippyup
[rust.git] / tests / ui / suggestions / assoc-type-in-method-return.rs
1 trait A {
2     type Bla;
3     fn to_bla(&self) -> Bla;
4     //~^ ERROR cannot find type `Bla` in this scope
5 }
6
7 fn main() {}