]> git.lizzy.rs Git - rust.git/blob - tests/ui/suggestions/assoc-type-in-method-return.rs
Rollup merge of #106715 - BoxyUwU:new_solver_triagebot, r=lcnr
[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() {}