]> git.proxmox.com Git - rustc.git/blob - src/test/ui/allocator/auxiliary/helper.rs
New upstream version 1.38.0+dfsg1
[rustc.git] / src / test / ui / allocator / auxiliary / helper.rs
1 // no-prefer-dynamic
2
3 #![crate_type = "rlib"]
4
5 use std::fmt;
6
7 pub fn work_with(p: &fmt::Debug) {
8 drop(p);
9 }