summary refs log tree commit diff
path: root/src/test/ui/allocator/auxiliary/helper.rs
blob: 7f6770c226a0cbaab81b3b8482a0ad450d784374 (plain)
1
2
3
4
5
6
7
8
9
// no-prefer-dynamic

#![crate_type = "rlib"]

use std::fmt;

pub fn work_with(p: &fmt::Debug) {
    drop(p);
}