summary refs log tree commit diff
path: root/src/test/ui/numeric/numeric-fields.stderr
blob: 68a87da8ded32a7d866591f77b7887f5ddda46d7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
error[E0560]: struct `S` has no field named `0b1`
  --> $DIR/numeric-fields.rs:14:15
   |
LL |     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`
  --> $DIR/numeric-fields.rs:17:17
   |
LL |         S{0: a, 0x1: b, ..} => {}
   |                 ^^^^^^ struct `S` does not have this field

error: aborting due to 2 previous errors

Some errors occurred: E0026, E0560.
For more information about an error, try `rustc --explain E0026`.