Sign in
fuchsia
/
third_party
/
rust
/
b3827e4f3728b77bd3e60587487ebfc3cc8d901b
/
.
/
tests
/
ui
/
destructuring-assignment
/
bad-expr-lhs.rs
blob: 90e1ac19943852fd9b22ef87d7bc102fe692ca20 [
file
] [
log
] [
blame
]
fn
main
()
{
1
=
2
;
//~ ERROR invalid left-hand side of assignment
1
+=
2
;
//~ ERROR invalid left-hand side of assignment
(
1
,
2
)
=
(
3
,
4
);
//~^ ERROR invalid left-hand side of assignment
//~| ERROR invalid left-hand side of assignment
}