]> git.lizzy.rs Git - rust.git/blob - src/test/ui/suggestions/type-not-found-in-adt-field.rs
Rollup merge of #90420 - GuillaumeGomez:rustdoc-internals-feature, r=camelid
[rust.git] / src / test / ui / suggestions / type-not-found-in-adt-field.rs
1 struct Struct {
2     m: Vec<Someunknownname<String, ()>>, //~ ERROR cannot find type `Someunknownname` in this scope
3     //~^ NOTE not found in this scope
4 }
5 struct OtherStruct { //~ HELP you might be missing a type parameter
6     m: K, //~ ERROR cannot find type `K` in this scope
7     //~^ NOTE not found in this scope
8 }
9 fn main() {}