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