Sign in
android
/
toolchain
/
rustc
/
cd1aefd586783f162dd848e314bd6991a5ffe033
/
.
/
tests
/
ui
/
suggestions
/
struct-initializer-comma.rs
blob: c137f0594186d0608ed73094286d8c6d95cec58f [
file
] [
log
] [
blame
]
// 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
};
}