mirror of
				https://github.com/rust-lang/rust.git
				synced 2025-11-04 06:56:14 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			11 lines
		
	
	
		
			188 B
		
	
	
	
		
			Rust
		
	
	
	
	
	
			
		
		
	
	
			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}");
 | 
						|
}
 |