rust/src/test/ui/parser/removed-syntax-with-2.rs

12 lines
251 B
Rust
Raw Normal View History

fn main() {
struct S {
foo: (),
bar: (),
2012-09-05 22:58:43 +00:00
}
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`
}