mirror of
https://github.com/rust-lang/rust.git
synced 2024-12-03 12:13:43 +00:00
11 lines
187 B
Rust
11 lines
187 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}");
|
|
}
|