Sign in
chromium
/
external
/
github.com
/
rust-lang
/
rust
/
HEAD
/
.
/
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`
}