2017-12-10 19:47:55 +00:00
|
|
|
error[E0560]: union `U` has no field named `principle`
|
2021-05-13 14:42:25 +00:00
|
|
|
--> $DIR/union-suggest-field.rs:13:17
|
2017-12-10 19:47:55 +00:00
|
|
|
|
|
2018-02-24 23:59:34 +00:00
|
|
|
LL | let u = U { principle: 0 };
|
2023-11-18 00:40:11 +00:00
|
|
|
| ^^^^^^^^^ unknown field
|
|
|
|
|
|
|
|
|
help: a field with a similar name exists
|
|
|
|
|
|
|
|
|
LL | let u = U { principal: 0 };
|
|
|
|
| ~~~~~~~~~
|
2017-12-10 19:47:55 +00:00
|
|
|
|
|
|
|
error[E0609]: no field `principial` on type `U`
|
2021-05-13 14:42:25 +00:00
|
|
|
--> $DIR/union-suggest-field.rs:17:15
|
2017-12-10 19:47:55 +00:00
|
|
|
|
|
2019-03-09 12:03:44 +00:00
|
|
|
LL | let w = u.principial;
|
2023-11-09 06:01:10 +00:00
|
|
|
| ^^^^^^^^^^ unknown field
|
2023-10-24 23:31:47 +00:00
|
|
|
|
|
|
|
|
help: a field with a similar name exists
|
|
|
|
|
|
|
|
|
LL | let w = u.principal;
|
|
|
|
| ~~~~~~~~~
|
2017-12-10 19:47:55 +00:00
|
|
|
|
|
|
|
error[E0615]: attempted to take value of method `calculate` on type `U`
|
2021-05-13 14:42:25 +00:00
|
|
|
--> $DIR/union-suggest-field.rs:21:15
|
2017-12-10 19:47:55 +00:00
|
|
|
|
|
2019-03-09 12:03:44 +00:00
|
|
|
LL | let y = u.calculate;
|
2020-03-22 18:18:06 +00:00
|
|
|
| ^^^^^^^^^ method, not a field
|
2020-03-12 03:38:21 +00:00
|
|
|
|
|
|
|
|
help: use parentheses to call the method
|
|
|
|
|
|
|
|
|
LL | let y = u.calculate();
|
2021-06-22 02:07:19 +00:00
|
|
|
| ++
|
2017-12-10 19:47:55 +00:00
|
|
|
|
|
|
|
error: aborting due to 3 previous errors
|
|
|
|
|
2019-04-17 17:26:38 +00:00
|
|
|
Some errors have detailed explanations: E0560, E0609, E0615.
|
2018-03-03 14:59:40 +00:00
|
|
|
For more information about an error, try `rustc --explain E0560`.
|