rust/src/test/ui/parser/removed-syntax-with-2.rs
2019-01-20 15:16:36 -08:00

12 lines
257 B
Rust

fn main() {
struct S {
foo: (),
bar: (),
}
let a = S { foo: (), bar: () };
let b = S { foo: (), with a };
//~^ ERROR expected one of `,` or `}`, found `a`
//~| ERROR missing field `bar` in initializer of `main::S`
}