rust/tests/ui/allocator/auxiliary/helper.rs

12 lines
145 B
Rust
Raw Normal View History

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