blob: f13c12fc52e4ede5e22bf1135c4b061dae269a9c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
// 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 {}
|