blob: d2ea09553bcc1d7971541f36ed9c139fe75d8a65 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
error[E0560]: union `U` has no field named `principle`
--> $DIR/union-suggest-field.rs:20:17
|
20 | let u = U { principle: 0 };
| ^^^^^^^^^^ field does not exist - did you mean `principal`?
error[E0609]: no field `principial` on type `U`
--> $DIR/union-suggest-field.rs:22:15
|
22 | let w = u.principial; //~ ERROR no field `principial` on type `U`
| ^^^^^^^^^^ did you mean `principal`?
error[E0615]: attempted to take value of method `calculate` on type `U`
--> $DIR/union-suggest-field.rs:25:15
|
25 | let y = u.calculate; //~ ERROR attempted to take value of method `calculate` on type `U`
| ^^^^^^^^^
|
= help: maybe a `()` to call it is missing?
error: aborting due to 3 previous errors
|