blob: 6a4ee39b16d86e8b08d3fadff41e0a8177938a21 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
// 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
};
}
|