mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-24 07:44:10 +00:00
15 lines
329 B
Rust
15 lines
329 B
Rust
// run-rustfix
|
|
|
|
#![allow(unused)]
|
|
|
|
struct Foo { x: i32 }
|
|
|
|
fn main() {
|
|
let f = Foo { x: 0 };
|
|
let Foo { .. } = f;
|
|
let Foo { .. } = f; //~ ERROR expected `}`, found `,`
|
|
let Foo { x, .. } = f;
|
|
let Foo { x, .. } = f; //~ ERROR expected `}`, found `,`
|
|
let Foo { x, .. } = f; //~ ERROR expected `}`, found `,`
|
|
}
|