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