]> git.proxmox.com Git - rustc.git/blob - src/test/ui/union/union-suggest-field.stderr
New upstream version 1.54.0+dfsg1
[rustc.git] / src / test / ui / union / union-suggest-field.stderr
1 error[E0560]: union `U` has no field named `principle`
2 --> $DIR/union-suggest-field.rs:10:17
3 |
4 LL | let u = U { principle: 0 };
5 | ^^^^^^^^^ help: a field with a similar name exists: `principal`
6
7 error[E0609]: no field `principial` on type `U`
8 --> $DIR/union-suggest-field.rs:14:15
9 |
10 LL | let w = u.principial;
11 | ^^^^^^^^^^ help: a field with a similar name exists: `principal`
12
13 error[E0615]: attempted to take value of method `calculate` on type `U`
14 --> $DIR/union-suggest-field.rs:18:15
15 |
16 LL | let y = u.calculate;
17 | ^^^^^^^^^ method, not a field
18 |
19 help: use parentheses to call the method
20 |
21 LL | let y = u.calculate();
22 | ^^
23
24 error: aborting due to 3 previous errors
25
26 Some errors have detailed explanations: E0560, E0609, E0615.
27 For more information about an error, try `rustc --explain E0560`.