]> git.lizzy.rs Git - rust.git/blob - src/test/ui/suggestions/type-not-found-in-adt-field.stderr
Rollup merge of #90420 - GuillaumeGomez:rustdoc-internals-feature, r=camelid
[rust.git] / src / test / ui / suggestions / type-not-found-in-adt-field.stderr
1 error[E0412]: cannot find type `Someunknownname` in this scope
2   --> $DIR/type-not-found-in-adt-field.rs:2:12
3    |
4 LL |     m: Vec<Someunknownname<String, ()>>,
5    |            ^^^^^^^^^^^^^^^ not found in this scope
6
7 error[E0412]: cannot find type `K` in this scope
8   --> $DIR/type-not-found-in-adt-field.rs:6:8
9    |
10 LL | struct OtherStruct {
11    |                   - help: you might be missing a type parameter: `<K>`
12 LL |     m: K,
13    |        ^ not found in this scope
14
15 error: aborting due to 2 previous errors
16
17 For more information about this error, try `rustc --explain E0412`.