summaryrefslogtreecommitdiffstats
path: root/tests/ui/binop/false-binop-caused-by-missing-semi.fixed
blob: b47372c90648640cbdbfc7be80eaa4f55aae6bf7 (plain)
1
2
3
4
5
6
7
8
9
10
// run-rustfix
fn foo() {}
fn main() {
    let mut y = 42;
    let x = &mut y;
    foo();
    *x = 0;  //~ ERROR invalid left-hand side of assignment
    let _ = x;
    println!("{y}");
}