rust/src/test/ui/parser/removed-syntax-with-2.rs
2018-12-25 21:08:33 -07:00

13 lines
235 B
Rust

// compile-flags: -Z parse-only
fn removed_with() {
struct S {
foo: (),
bar: (),
}
let a = S { foo: (), bar: () };
let b = S { foo: (), with a };
//~^ ERROR expected one of `,` or `}`, found `a`
}