mirror of
				https://github.com/rust-lang/rust.git
				synced 2025-10-31 21:16:44 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			13 lines
		
	
	
		
			173 B
		
	
	
	
		
			Rust
		
	
	
	
	
	
			
		
		
	
	
			13 lines
		
	
	
		
			173 B
		
	
	
	
		
			Rust
		
	
	
	
	
	
| //@ check-pass
 | |
| 
 | |
| fn main() {
 | |
|     #[allow(unused_variables)]
 | |
|     if true {
 | |
|         let a = 1;
 | |
|     } else if false {
 | |
|         let b = 1;
 | |
|     } else {
 | |
|         let c = 1;
 | |
|     }
 | |
| }
 | 
