mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-01 15:01:51 +00:00
7 lines
170 B
Rust
7 lines
170 B
Rust
fn main() {
|
|
enum Foo { A { x: u32 } }
|
|
let orig = Foo::A { x: 5 };
|
|
Foo::A { x: 6, ..orig };
|
|
//~^ ERROR functional record update syntax requires a struct
|
|
}
|