DEBSOURCES
Skip Quicknav
sources / rustc-web / 1.70.0%2Bdfsg1-7~deb11u1 / tests / ui / allocator / auxiliary / helper.rs
1234567891011
// no-prefer-dynamic #![crate_type = "rlib"] #![no_std] extern crate alloc; use alloc::fmt; pub fn work_with(p: &fmt::Debug) { drop(p); }