mirror of
https://github.com/rust-lang/rust
synced 2024-11-05 20:45:15 +00:00
6 lines
170 B
Rust
6 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
|
|
}
|