blob: c2fab714f7c156117db2ad0d45ca3be13ab9f398 (
plain)
1
2
3
4
5
6
7
8
9
|
error[E0609]: no field `baa` on type `BuildData`
--> $DIR/struct-fields-typo.rs:11:17
|
LL | let x = foo.baa; //~ ERROR no field `baa` on type `BuildData`
| ^^^ help: a field with a similar name exists: `bar`
error: aborting due to previous error
For more information about this error, try `rustc --explain E0609`.
|