summaryrefslogtreecommitdiffstats
path: root/tests/codegen-units/partitioning/auxiliary/cgu_extern_drop_glue.rs
blob: b5fec23375a5e6c8a67925691d73972fc777cd05 (plain)
1
2
3
4
5
6
7
#![crate_type = "lib"]

pub struct Struct(pub u32);

impl Drop for Struct {
    fn drop(&mut self) {}
}