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