rust/tests/run-make/crate-circular-deps-link/b.rs
2024-07-30 14:44:14 -04:00

9 lines
160 B
Rust

#![crate_type = "rlib"]
#![feature(alloc_error_handler)]
#![no_std]
#[alloc_error_handler]
pub fn error_handler(_: core::alloc::Layout) -> ! {
panic!();
}