]> git.lizzy.rs Git - rust.git/blob - tests/ui/suggestions/type-not-found-in-adt-field.stderr
Rollup merge of #106670 - albertlarsan68:check-docs-in-pr-ci, r=Mark-Simulacrum
[rust.git] / tests / 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 |     m: K,
11    |        ^ not found in this scope
12    |
13 help: you might be missing a type parameter
14    |
15 LL | struct OtherStruct<K> {
16    |                   +++
17
18 error: aborting due to 2 previous errors
19
20 For more information about this error, try `rustc --explain E0412`.