rust/src/test/ui/union/union-suggest-field.stderr

23 lines
834 B
Plaintext
Raw Normal View History

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