mirror of
https://github.com/rust-lang/rust
synced 2024-11-05 20:45:15 +00:00
15 lines
256 B
Rust
15 lines
256 B
Rust
// compile-flags:-C panic=abort
|
|
// error-pattern: language item required, but not found: `panic_info`
|
|
|
|
#![feature(lang_items)]
|
|
#![feature(no_core)]
|
|
#![no_core]
|
|
#![no_main]
|
|
|
|
#[panic_handler]
|
|
fn panic() -> ! {
|
|
loop {}
|
|
}
|
|
|
|
#[lang = "sized"]
|
|
trait Sized {}
|