blob: 2c1e152dcee750ceb10b086d0428453405c048e1 [file] [log] [blame]
fn main() {
struct S {
foo: (),
bar: (),
}
let a = S { foo: (), bar: () };
let b = S { foo: () with a, bar: () };
//~^ ERROR expected one of `,`, `.`, `?`, `}`, or an operator, found `with`
}