rust/tests/ui/issues/issue-26948.rs

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

7 lines
170 B
Rust
Raw Normal View History

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
}