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