mirror of
https://github.com/rust-lang/rust.git
synced 2024-12-03 20:23:59 +00:00
12 lines
145 B
Rust
12 lines
145 B
Rust
// no-prefer-dynamic
|
|
|
|
#![crate_type = "rlib"]
|
|
#![no_std]
|
|
|
|
extern crate alloc;
|
|
use alloc::fmt;
|
|
|
|
pub fn work_with(p: &fmt::Debug) {
|
|
drop(p);
|
|
}
|