2024-02-16 20:02:50 +00:00
|
|
|
//@ compile-flags:-C panic=abort
|
2018-10-11 19:36:51 +02:00
|
|
|
|
|
|
|
|
#![no_std]
|
|
|
|
|
#![no_main]
|
|
|
|
|
|
2024-04-17 12:30:45 +02:00
|
|
|
#[panic_handler] //~ ERROR `panic_impl` lang item must be applied to a function
|
2018-10-11 19:36:51 +02:00
|
|
|
static X: u32 = 42;
|
2025-03-23 15:50:51 +03:00
|
|
|
|
|
|
|
|
//~? ERROR `#[panic_handler]` function required, but not found
|