Sign in
android
/
toolchain
/
rustc
/
d720b3f2ba07cb42ff7b311589c99daefe3aaa22
/
.
/
tests
/
ui
/
allocator
/
auxiliary
/
helper.rs
blob: 008fb3501d90de692b8bee6b042a45668eccccc6 [
file
] [
log
] [
blame
]
// no-prefer-dynamic
#![
crate_type
=
"rlib"
]
#![
no_std
]
extern
crate alloc
;
use
alloc
::
fmt
;
pub
fn
work_with
(
p
:
&
fmt
::
Debug
)
{
drop
(
p
);
}