mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-27 17:24:06 +00:00
12 lines
146 B
Rust
12 lines
146 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);
|
|
}
|