Sign in
rust
/
rust
/
9b1f20d20dc00a950f99a00a34be9d2ca78d1f0d
/
.
/
tests
/
ui
/
destructuring-assignment
/
default-match-bindings-forbidden.rs
blob: ff867c000716e358d49ad2208ada44c8f13aa905 [
file
]
fn
main
()
{
let
mut
x
=
&
0
;
let
mut
y
=
&
0
;
(
x
,
y
)
=
&(
1
,
2
);
//~ ERROR mismatched types
}