os-rust/tests/ui/structs/struct-duplicate-comma.rs

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

16 lines
191 B
Rust
Raw Normal View History

2020-07-02 14:32:12 +09:00
//@ run-rustfix
// Issue #50974
2020-07-02 14:32:12 +09:00
pub struct Foo {
pub a: u8,
pub b: u8
2018-05-29 20:15:59 +02:00
}
fn main() {
2020-07-02 14:32:12 +09:00
let _ = Foo {
2018-05-29 20:15:59 +02:00
a: 0,,
//~^ ERROR expected identifier
b: 42
};
}