1
Fork 0
rust/src/test/ui/numeric-fields.stderr

19 lines
586 B
Text
Raw Normal View History

error[E0560]: struct `S` has no field named `0b1`
--> $DIR/numeric-fields.rs:14:15
|
14 | let s = S{0b1: 10, 0: 11};
2018-02-17 19:35:59 -08:00
| ^^^ `S` does not have this field
|
= note: available fields are: `0`, `1`
error[E0026]: struct `S` does not have a field named `0x1`
--> $DIR/numeric-fields.rs:17:17
|
2018-02-23 03:42:32 +03:00
LL | S{0: a, 0x1: b, ..} => {}
| ^^^^^^ struct `S` does not have field `0x1`
error: aborting due to 2 previous errors
2018-02-19 21:40:25 +01:00
You've got a few errors: E0026, E0560
If you want more information on an error, try using "rustc --explain E0026"