rust/tests/ui/union/union-suggest-field.thirunsafeck.stderr

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

28 lines
912 B
Plaintext
Raw Normal View History

error[E0560]: union `U` has no field named `principle`
--> $DIR/union-suggest-field.rs:13:17
|
2018-02-24 23:59:34 +00: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:17:15
|
2019-03-09 12:03:44 +00: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:21:15
|
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
|
help: use parentheses to call the method
|
LL | let y = u.calculate();
| ++
error: aborting due to 3 previous errors
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`.