2017-12-10 19:47:55 +00:00
|
|
|
error[E0560]: union `U` has no field named `principle`
|
2018-12-25 15:56:47 +00:00
|
|
|
--> $DIR/union-suggest-field.rs:10:17
|
2017-12-10 19:47:55 +00:00
|
|
|
|
|
2018-02-24 23:59:34 +00:00
|
|
|
LL | let u = U { principle: 0 };
|
2018-12-20 23:10:46 +00:00
|
|
|
| ^^^^^^^^^ help: a field with a similar name exists: `principal`
|
2017-12-10 19:47:55 +00:00
|
|
|
|
|
|
|
error[E0609]: no field `principial` on type `U`
|
2018-12-20 23:10:46 +00:00
|
|
|
--> $DIR/union-suggest-field.rs:14:15
|
2017-12-10 19:47:55 +00:00
|
|
|
|
|
2018-02-23 00:42:32 +00:00
|
|
|
LL | let w = u.principial; //~ ERROR no field `principial` on type `U`
|
2018-12-20 23:10:46 +00:00
|
|
|
| ^^^^^^^^^^ help: a field with a similar name exists: `principal`
|
2017-12-10 19:47:55 +00:00
|
|
|
|
|
|
|
error[E0615]: attempted to take value of method `calculate` on type `U`
|
2018-12-20 23:10:46 +00:00
|
|
|
--> $DIR/union-suggest-field.rs:18:15
|
2017-12-10 19:47:55 +00:00
|
|
|
|
|
2018-02-23 00:42:32 +00:00
|
|
|
LL | let y = u.calculate; //~ ERROR attempted to take value of method `calculate` on type `U`
|
2019-01-02 22:01:03 +00:00
|
|
|
| ^^^^^^^^^ help: use parentheses to call the method: `calculate()`
|
2017-12-10 19:47:55 +00:00
|
|
|
|
|
|
|
error: aborting due to 3 previous errors
|
|
|
|
|
2018-03-03 14:59:40 +00:00
|
|
|
Some errors occurred: E0560, E0609, E0615.
|
|
|
|
For more information about an error, try `rustc --explain E0560`.
|