blob: 119afdcc75e368bd4b01af8778ad6fd318c08c27 [file] [log] [blame] [edit]
fn main() {
struct S {
foo: (),
bar: (),
}
let a = S { foo: (), bar: () };
let b = S { foo: (), with a };
//~^ ERROR expected one of `,`, `:`, or `}`, found `a`
}