blob: 451057c66a1277008483768ae886a1e97b63d7c7 (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
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 `S`
}
|