mirror of
				https://github.com/rust-lang/rust.git
				synced 2025-10-30 20:44:34 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			14 lines
		
	
	
		
			282 B
		
	
	
	
		
			Rust
		
	
	
	
	
	
			
		
		
	
	
			14 lines
		
	
	
		
			282 B
		
	
	
	
		
			Rust
		
	
	
	
	
	
| // edition:2018
 | |
| //
 | |
| // Regression test for issue #75785
 | |
| // Tests that we don't point to a confusing named
 | |
| // region when emitting a diagnostic
 | |
| 
 | |
| pub async fn async_fn(x: &mut i32) -> (&i32, &i32) {
 | |
|     let y = &*x;
 | |
|     *x += 1; //~ ERROR cannot assign to
 | |
|     (&32, y)
 | |
| }
 | |
| 
 | |
| fn main() {}
 | 
