summary refs log tree commit diff
path: root/src/test/ui/parser/struct-field-numeric-shorthand.stderr
blob: e909a9ece6077d3388893c4fe274f0130eacbb6c (plain)
1
2
3
4
5
6
7
8
9
10
error: expected identifier, found `0`
  --> $DIR/struct-field-numeric-shorthand.rs:16:19
   |
LL |     let _ = Rgb { 0, 1, 2 }; //~ ERROR expected identifier, found `0`
   |             ---   ^ expected identifier
   |             |
   |             while parsing this struct

error: aborting due to previous error