mirror of
				https://github.com/rust-lang/rust.git
				synced 2025-10-31 13:04:42 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			14 lines
		
	
	
		
			279 B
		
	
	
	
		
			Rust
		
	
	
	
	
	
			
		
		
	
	
			14 lines
		
	
	
		
			279 B
		
	
	
	
		
			Rust
		
	
	
	
	
	
| // edition:2018
 | |
| 
 | |
| pub async fn f(x: Option<usize>) {
 | |
|     x.take();
 | |
|     //~^ ERROR cannot borrow `x` as mutable, as it is not declared as mutable [E0596]
 | |
| }
 | |
| 
 | |
| pub async fn g(x: usize) {
 | |
|     x += 1;
 | |
|     //~^ ERROR cannot assign twice to immutable variable `x` [E0384]
 | |
| }
 | |
| 
 | |
| fn main() {}
 | 
