Sign in
android
/
toolchain
/
rustc
/
refs/heads/main
/
.
/
tests
/
ui
/
suggestions
/
struct-initializer-comma.fixed
blob: 556bfbca58df4f7dca5762c81e637514a0bf54c6 [
file
] [
log
] [
blame
] [
edit
]
//@ 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
};
}