mirror of
https://github.com/rust-lang/rust
synced 2024-11-05 20:45:15 +00:00
10 lines
188 B
Rust
10 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}");
|
|
}
|