rust/tests/ui/allocator/auxiliary/helper.rs
2023-01-11 09:32:08 +00:00

12 lines
145 B
Rust

// no-prefer-dynamic
#![crate_type = "rlib"]
#![no_std]
extern crate alloc;
use alloc::fmt;
pub fn work_with(p: &fmt::Debug) {
drop(p);
}