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