mirror of
				https://github.com/rust-lang/rust.git
				synced 2025-10-31 13:04:42 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			18 lines
		
	
	
		
			297 B
		
	
	
	
		
			Rust
		
	
	
	
	
	
			
		
		
	
	
			18 lines
		
	
	
		
			297 B
		
	
	
	
		
			Rust
		
	
	
	
	
	
| // compile-flags:-C panic=abort
 | |
| 
 | |
| #![feature(lang_items)]
 | |
| #![no_std]
 | |
| #![no_main]
 | |
| 
 | |
| use core::panic::PanicInfo;
 | |
| 
 | |
| #[panic_handler]
 | |
| fn panic(info: &PanicInfo) -> ! {
 | |
|     loop {}
 | |
| }
 | |
| 
 | |
| #[lang = "panic_impl"]
 | |
| fn panic2(info: &PanicInfo) -> ! { //~ ERROR found duplicate lang item `panic_impl`
 | |
|     loop {}
 | |
| }
 | 
