Sign in
rust
/
rust
/
08cd08fbef8c6663b052d8d9e4930d5696cbb8a7
/
.
/
tests
/
ui
/
parser
/
struct-field-numeric-shorthand.rs
blob: aa342eb02a9165915ead3b42bda5e224bdc8a7e9 [
file
]
struct
Rgb
(
u8
,
u8
,
u8
);
fn
main
()
{
let
_
=
Rgb
{
0
,
1
,
2
};
//~^ ERROR expected identifier, found `0`
//~| ERROR expected identifier, found `1`
//~| ERROR expected identifier, found `2`
}