2018-10-11 19:36:51 +02:00
|
|
|
// compile-flags:-C panic=abort
|
|
|
|
|
|
|
|
|
|
#![no_std]
|
|
|
|
|
#![no_main]
|
|
|
|
|
|
2018-11-27 10:56:36 +01:00
|
|
|
#[panic_handler] //~ ERROR `panic_impl` language item must be applied to a function
|
2018-10-11 19:36:51 +02:00
|
|
|
#[no_mangle]
|
|
|
|
|
static X: u32 = 42;
|