mirror of
				https://git.proxmox.com/git/rustc
				synced 2025-11-04 02:07:54 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			9 lines
		
	
	
		
			151 B
		
	
	
	
		
			Rust
		
	
	
	
	
	
			
		
		
	
	
			9 lines
		
	
	
		
			151 B
		
	
	
	
		
			Rust
		
	
	
	
	
	
fn main() {
 | 
						|
    let x = 0;
 | 
						|
 | 
						|
    (move || {
 | 
						|
        x = 1;
 | 
						|
        //~^ ERROR cannot assign to `x`, as it is not declared as mutable [E0594]
 | 
						|
    })()
 | 
						|
}
 |