mirror of
https://git.proxmox.com/git/rustc
synced 2026-01-15 08:29:11 +00:00
16 lines
224 B
Rust
16 lines
224 B
Rust
//@ 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
|
|
};
|
|
}
|