rust/tests/ui/allocator/auxiliary/helper.rs

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

12 lines
145 B
Rust
Raw Normal View History

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