2017-12-10 13:47:55 -06:00
|
|
|
error[E0560]: struct `S` has no field named `0b1`
|
|
|
|
--> $DIR/numeric-fields.rs:14:15
|
|
|
|
|
|
|
|
|
14 | let s = S{0b1: 10, 0: 11};
|
|
|
|
| ^^^^ `S` does not have this field
|
|
|
|
|
|
|
|
|
= note: available fields are: `0`, `1`
|
|
|
|
|
|
|
|
error[E0026]: struct `S` does not have a field named `0x1`
|
2017-12-10 14:29:24 -06:00
|
|
|
--> $DIR/numeric-fields.rs:17:17
|
2017-12-10 13:47:55 -06:00
|
|
|
|
|
2017-12-10 14:29:24 -06:00
|
|
|
17 | S{0: a, 0x1: b, ..} => {}
|
2017-12-10 13:47:55 -06:00
|
|
|
| ^^^^^^ struct `S` does not have field `0x1`
|
|
|
|
|
|
|
|
error: aborting due to 2 previous errors
|
|
|
|
|