]> git.proxmox.com Git - rustc.git/blob - src/test/ui/numeric/numeric-fields.stderr
Update unsuspicious file list
[rustc.git] / src / test / ui / numeric / numeric-fields.stderr
1 error[E0560]: struct `S` has no field named `0b1`
2 --> $DIR/numeric-fields.rs:4:15
3 |
4 LL | struct S(u8, u16);
5 | - `S` defined here
6 ...
7 LL | let s = S{0b1: 10, 0: 11};
8 | ^^^ field does not exist
9 |
10 help: `S` is a tuple struct, use the appropriate syntax
11 |
12 LL | let s = S(/* fields */);
13 | ~~~~~~~~~~~~~~~
14
15 error[E0026]: struct `S` does not have a field named `0x1`
16 --> $DIR/numeric-fields.rs:7:17
17 |
18 LL | S{0: a, 0x1: b, ..} => {}
19 | ^^^
20 | |
21 | struct `S` does not have this field
22 | help: `S` has a field named `1`
23
24 error: aborting due to 2 previous errors
25
26 Some errors have detailed explanations: E0026, E0560.
27 For more information about an error, try `rustc --explain E0026`.