blob: c4b1937de104f491516280e2ec8e857cbbb58474 [file] [log] [blame]
fn main() {
struct Foo { x: isize }
match (Foo { x: 10 }) {
Foo { ref x: ref x } => {}, //~ ERROR expected `,`
_ => {}
}
}