mirror of
				https://github.com/rust-lang/rust.git
				synced 2025-10-31 21:16:44 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			11 lines
		
	
	
		
			312 B
		
	
	
	
		
			Rust
		
	
	
	
	
	
			
		
		
	
	
			11 lines
		
	
	
		
			312 B
		
	
	
	
		
			Rust
		
	
	
	
	
	
| // Regression test for #80134.
 | |
| 
 | |
| fn main() {
 | |
|     (()é);
 | |
|     //~^ ERROR: expected one of `)`, `,`, `.`, `?`, or an operator
 | |
|     //~| ERROR: cannot find value `é` in this scope
 | |
|     (()氷);
 | |
|     //~^ ERROR: expected one of `)`, `,`, `.`, `?`, or an operator
 | |
|     //~| ERROR: cannot find value `氷` in this scope
 | |
| }
 | 
