mirror of
				https://github.com/rust-lang/rust.git
				synced 2025-11-04 15:05:30 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			12 lines
		
	
	
		
			243 B
		
	
	
	
		
			Rust
		
	
	
	
	
	
			
		
		
	
	
			12 lines
		
	
	
		
			243 B
		
	
	
	
		
			Rust
		
	
	
	
	
	
// compile-flags: -C no-prepopulate-passes -C panic=abort -C force-unwind-tables=n
 | 
						|
// ignore-windows
 | 
						|
 | 
						|
#![crate_type="lib"]
 | 
						|
 | 
						|
// CHECK-LABEL: define{{.*}}void @foo
 | 
						|
// CHECK-NOT: attributes #{{.*}} uwtable
 | 
						|
#[no_mangle]
 | 
						|
fn foo() {
 | 
						|
    panic!();
 | 
						|
}
 |