DEBSOURCES
Skip Quicknav
sources / rustc / 1.87.0%2Bdfsg1-1 / 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); }