mirror of
				https://github.com/rust-lang/rust.git
				synced 2025-10-30 20:44:34 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			14 lines
		
	
	
		
			315 B
		
	
	
	
		
			Rust
		
	
	
	
	
	
			
		
		
	
	
			14 lines
		
	
	
		
			315 B
		
	
	
	
		
			Rust
		
	
	
	
	
	
| //@ edition: 2021
 | |
| 
 | |
| fn main() {
 | |
|     loop {
 | |
|         if core::hint::black_box(true) {
 | |
|             break;
 | |
|         }
 | |
|     }
 | |
| }
 | |
| 
 | |
| // This test is a lightly-modified version of `tests/mir-opt/coverage/instrument_coverage.rs`.
 | |
| // If this test needs to be blessed, then the mir-opt version probably needs to
 | |
| // be blessed too!
 | 
