rust/tests/ui/allocator/auxiliary/helper.rs
2024-02-16 20:02:50 +00:00

12 lines
146 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);
}