Sign in
android
/
toolchain
/
rustc
/
refs/heads/main
/
.
/
tests
/
ui
/
structs
/
struct-duplicate-comma.fixed
blob: 2f40f960975f427388ed7416ade61b009900e02e [
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
};
}