Sign in
android
/
toolchain
/
rustc
/
refs/heads/main
/
.
/
tests
/
ui
/
structs
/
struct-duplicate-comma.rs
blob: 5982cea93f55d1f57234dfd608aa9b7547ede68a [
file
] [
log
] [
blame
] [
edit
]
//@ run-rustfix
// Issue #50974
pub
struct
Foo
{
pub
a
:
u8
,
pub
b
:
u8
}
fn
main
()
{
let
_
=
Foo
{
a
:
0
,,
//~^ ERROR expected identifier
b
:
42
};
}