Sign in
rust
/
rust
/
refs/heads/try-perf
/
.
/
tests
/
ui
/
parser
/
struct-field-numeric-shorthand.rs
blob: aa342eb02a9165915ead3b42bda5e224bdc8a7e9 [
file
] [
log
] [
blame
] [
edit
]
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`
}