Sign in
rust
/
rust
/
e8a00a7621606f8c4a34b679cefaaa6aecf2442e
/
.
/
tests
/
codegen-units
/
partitioning
/
auxiliary
/
cgu_extern_drop_glue.rs
blob: b5fec23375a5e6c8a67925691d73972fc777cd05 [
file
] [
log
] [
blame
]
#![
crate_type
=
"lib"
]
pub
struct
Struct
(
pub
u32
);
impl
Drop
for
Struct
{
fn
drop
(&
mut
self
)
{}
}