rust/tests/ui/binop/false-binop-caused-by-missing-semi.fixed
2023-11-06 17:38:06 +00:00

11 lines
188 B
Rust

// 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}");
}