mirror of
https://git.proxmox.com/git/rustc
synced 2026-01-01 08:28:35 +00:00
16 lines
190 B
Plaintext
16 lines
190 B
Plaintext
//@ run-rustfix
|
|
// Issue #50974
|
|
|
|
pub struct Foo {
|
|
pub a: u8,
|
|
pub b: u8
|
|
}
|
|
|
|
fn main() {
|
|
let _ = Foo {
|
|
a: 0,
|
|
//~^ ERROR expected identifier
|
|
b: 42
|
|
};
|
|
}
|