Sign in
rust
/
rust
/
08cd08fbef8c6663b052d8d9e4930d5696cbb8a7
/
.
/
tests
/
ui
/
suggestions
/
struct-initializer-comma.fixed
blob: 9bd9434a3b59dc84a07546e2a46f4d96033e140a [
file
]
//@ run-rustfix
pub
struct
Foo
{
pub first
:
bool
,
pub second
:
u8
,
}
fn main
()
{
let
_
=
Foo
{
first
:
true
,
second
:
25
//~^ ERROR expected one of
};
}