rust/tests/codegen-units/partitioning/auxiliary/cgu_extern_drop_glue.rs
2023-01-11 09:32:08 +00:00

8 lines
104 B
Rust

#![crate_type = "lib"]
pub struct Struct(pub u32);
impl Drop for Struct {
fn drop(&mut self) {}
}