mirror of
				https://github.com/rust-lang/rust.git
				synced 2025-10-31 13:04:42 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			11 lines
		
	
	
		
			200 B
		
	
	
	
		
			Rust
		
	
	
	
	
	
			
		
		
	
	
			11 lines
		
	
	
		
			200 B
		
	
	
	
		
			Rust
		
	
	
	
	
	
| //@ compile-flags: -Zmaximal-hir-to-mir-coverage
 | |
| //@ run-pass
 | |
| 
 | |
| // Just making sure this flag is accepted and doesn't crash the compiler
 | |
| 
 | |
| fn main() {
 | |
|   let x = 1;
 | |
|   let y = x + 1;
 | |
|   println!("{y}");
 | |
| }
 | 
