mirror of
				https://github.com/rust-lang/rust.git
				synced 2025-11-04 06:56:14 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			15 lines
		
	
	
		
			270 B
		
	
	
	
		
			Rust
		
	
	
	
	
	
			
		
		
	
	
			15 lines
		
	
	
		
			270 B
		
	
	
	
		
			Rust
		
	
	
	
	
	
// EMIT_MIR_FOR_EACH_PANIC_STRATEGY
 | 
						|
#[inline(never)]
 | 
						|
fn noop() {}
 | 
						|
 | 
						|
// EMIT_MIR simplify_if.main.SimplifyConstCondition-after-const-prop.diff
 | 
						|
fn main() {
 | 
						|
    // CHECK-LABEL: fn main(
 | 
						|
 | 
						|
    // CHECK: bb0: {
 | 
						|
    // CHECK-NEXT: return;
 | 
						|
    if false {
 | 
						|
        noop();
 | 
						|
    }
 | 
						|
}
 |