Sign in
android
/
toolchain
/
rustc
/
d720b3f2ba07cb42ff7b311589c99daefe3aaa22
/
.
/
tests
/
ui
/
suggestions
/
struct-initializer-comma.fixed
blob: 6a4ee39b16d86e8b08d3fadff41e0a8177938a21 [
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
};
}