os-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.

38 lines
1 KiB
Text
Raw Normal View History

error[E0560]: union `U` has no field named `principle`
--> $DIR/union-suggest-field.rs:10:17
|
2018-02-25 02:59:34 +03: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 };
| ~~~~~~~~~
error[E0609]: no field `principial` on type `U`
--> $DIR/union-suggest-field.rs:14:15
|
2019-03-09 15:03:44 +03: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.principal;
| ~~~~~~~~~
error[E0615]: attempted to take value of method `calculate` on type `U`
--> $DIR/union-suggest-field.rs:18:15
|
2019-03-09 15:03:44 +03:00
LL | let y = u.calculate;
2020-03-22 11:18:06 -07: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 15:59:40 +01:00
For more information about an error, try `rustc --explain E0560`.