rust/tests/ui/destructuring-assignment/default-match-bindings-forb...

6 lines
103 B
Rust

fn main() {
let mut x = &0;
let mut y = &0;
(x, y) = &(1, 2); //~ ERROR mismatched types
}