2017-12-10 13:47:55 -06:00
|
|
|
error[E0560]: union `U` has no field named `principle`
|
|
|
|
--> $DIR/union-suggest-field.rs:20:17
|
|
|
|
|
|
2018-02-24 17:59:34 -06:00
|
|
|
LL | let u = U { principle: 0 };
|
2018-02-17 21:35:59 -06:00
|
|
|
| ^^^^^^^^^ field does not exist - did you mean `principal`?
|
2017-12-10 13:47:55 -06:00
|
|
|
|
|
|
|
error[E0609]: no field `principial` on type `U`
|
2017-12-10 14:29:24 -06:00
|
|
|
--> $DIR/union-suggest-field.rs:22:15
|
2017-12-10 13:47:55 -06:00
|
|
|
|
|
2018-02-22 18:42:32 -06:00
|
|
|
LL | let w = u.principial; //~ ERROR no field `principial` on type `U`
|
2017-12-10 13:47:55 -06:00
|
|
|
| ^^^^^^^^^^ did you mean `principal`?
|
|
|
|
|
|
|
|
error[E0615]: attempted to take value of method `calculate` on type `U`
|
2017-12-10 14:29:24 -06:00
|
|
|
--> $DIR/union-suggest-field.rs:25:15
|
2017-12-10 13:47:55 -06:00
|
|
|
|
|
2018-02-22 18:42:32 -06:00
|
|
|
LL | let y = u.calculate; //~ ERROR attempted to take value of method `calculate` on type `U`
|
2017-12-10 13:47:55 -06:00
|
|
|
| ^^^^^^^^^
|
|
|
|
|
|
|
|
|
= help: maybe a `()` to call it is missing?
|
|
|
|
|
|
|
|
error: aborting due to 3 previous errors
|
|
|
|
|
2018-02-19 14:40:25 -06:00
|
|
|
You've got a few errors: E0560, E0609, E0615
|
|
|
|
If you want more information on an error, try using "rustc --explain E0560"
|