summaryrefslogtreecommitdiffstats
path: root/src/test/ui/suggestions/type-not-found-in-adt-field.stderr
blob: e990fb5ba12107c67dbe22e3abdc2259a99cddb5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
error[E0412]: cannot find type `Someunknownname` in this scope
  --> $DIR/type-not-found-in-adt-field.rs:2:12
   |
LL |     m: Vec<Someunknownname<String, ()>>,
   |            ^^^^^^^^^^^^^^^ not found in this scope

error[E0412]: cannot find type `K` in this scope
  --> $DIR/type-not-found-in-adt-field.rs:6:8
   |
LL | struct OtherStruct {
   |                   - help: you might be missing a type parameter: `<K>`
LL |     m: K,
   |        ^ not found in this scope

error: aborting due to 2 previous errors

For more information about this error, try `rustc --explain E0412`.