rustc/tests/codegen-units/partitioning/auxiliary/cgu_extern_drop_glue.rs
2023-08-02 10:33:26 +02:00

8 lines
104 B
Rust

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