mirror of
https://github.com/rust-lang/rust.git
synced 2024-10-31 22:41:50 +00:00
16 lines
190 B
Rust
16 lines
190 B
Rust
// run-rustfix
|
|
// Issue #50974
|
|
|
|
pub struct Foo {
|
|
pub a: u8,
|
|
pub b: u8
|
|
}
|
|
|
|
fn main() {
|
|
let _ = Foo {
|
|
a: 0,,
|
|
//~^ ERROR expected identifier
|
|
b: 42
|
|
};
|
|
}
|