blob: 22f6b6e72489049ea7ea8bf6298c7aa888e9aa18 [file]
//@ compile-flags:-C panic=abort
#![no_std]
#![no_main]
#[panic_handler] //~ ERROR attribute cannot be used on statics
static X: u32 = 42;
//~? ERROR `#[panic_handler]` function required, but not found