Closed
Description
fn main() {
let x = (0,2);
match x {
(0, ref y) => { /* use y */}
(y, 0) => { /* use y */ }
_ => ()
}
}
I had this error on play.rust-lang on release, beta and nightly.
fn main() {
let x = (0,2);
match x {
(0, ref y) => { /* use y */}
(y, 0) => { /* use y */ }
_ => ()
}
}
I had this error on play.rust-lang on release, beta and nightly.