Sign in
rust
/
rust
/
6ea369cfee9420f6fe3f89e4bff7b01ac0ef920d
/
.
/
tests
/
ui
/
suggestions
/
struct-initializer-comma.rs
blob: 7b93bf187b870225fff0073b93a8fd9acc495890 [
file
]
//@ run-rustfix
pub
struct
Foo
{
pub
first
:
bool
,
pub
second
:
u8
,
}
fn
main
()
{
let
_
=
Foo
{
//~^ ERROR missing field
first
:
true
second
:
25
//~^ ERROR expected one of
};
}