summaryrefslogtreecommitdiffstats
path: root/tests/ui/destructuring-assignment/bad-expr-lhs.rs
blob: 90e1ac19943852fd9b22ef87d7bc102fe692ca20 (plain)
1
2
3
4
5
6
7
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
}