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

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

40 lines
1.1 KiB
Plaintext
Raw Normal View History

error[E0560]: union `U` has no field named `principle`
--> $DIR/union-suggest-field.rs:10:17
|
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 { principle: 0 };
LL + let u = U { principal: 0 };
|
error[E0609]: no field `principial` on type `U`
--> $DIR/union-suggest-field.rs:14:15
|
2019-03-09 12:03:44 +00:00
LL | let w = u.principial;
2023-11-09 06:01:10 +00:00
| ^^^^^^^^^^ unknown field
|
help: a field with a similar name exists
|
LL - let w = u.principial;
LL + let w = u.principal;
|
error[E0615]: attempted to take value of method `calculate` on type `U`
--> $DIR/union-suggest-field.rs:18: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`.