#![no_std]
#![no_main]
use core::hint::black_box;
#[no_mangle]
static rust_eh_personality: [u8; 0] = [];
#[inline(never)]
fn uninlined_call() -> usize {
let x = 1337;
x + 42
}
#[inline(always)]
fn inlined_call() -> usize {
uninlined_call()
}
#[inline(never)]
#[export_name = "_RNvCs69hjMPjVIJK_4test13test_function"]
fn test_function() -> usize {
let x = inlined_call();
x
}
#[no_mangle]
pub extern "C" fn _start() -> ! {
let _x = black_box(test_function());
loop {}
}
#[panic_handler]
fn panic(_info: &core::panic::PanicInfo) -> ! {
loop {}
}