rust/tests/ui/mismatched_types/E0409.rs

10 lines
172 B
Rust

fn main() {
let x = (0, 2);
match x {
(0, ref y) | (y, 0) => {} //~ ERROR E0409
//~| ERROR E0308
_ => ()
}
}