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