mirror of
https://git.proxmox.com/git/rustc
synced 2025-08-15 03:09:54 +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);
|
|
}
|