]> git.lizzy.rs Git - rust.git/blob - tests/run-make-fulldeps/issue-69368/b.rs
Rollup merge of #106397 - compiler-errors:new-solver-impl-wc, r=lcnr
[rust.git] / tests / run-make-fulldeps / issue-69368 / b.rs
1 #![crate_type = "rlib"]
2 #![feature(alloc_error_handler)]
3 #![no_std]
4
5 #[alloc_error_handler]
6 pub fn error_handler(_: core::alloc::Layout) -> ! {
7     panic!();
8 }