blob: c638546a9475ff554a36f8cdcf827a846c8ee25c [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);
}