mirror of
https://github.com/rust-lang/rust.git
synced 2025-10-03 10:47:16 +00:00
11 lines
235 B
Rust
11 lines
235 B
Rust
//@ compile-flags:-C panic=abort
|
|
|
|
#![no_std]
|
|
#![no_main]
|
|
|
|
#[panic_handler] //~ ERROR `panic_impl` lang item must be applied to a function
|
|
#[no_mangle]
|
|
static X: u32 = 42;
|
|
|
|
//~? ERROR `#[panic_handler]` function required, but not found
|