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