1 2 3 4 5 6 7 8
#![crate_name="inline_dtor"] pub struct Foo; impl Drop for Foo { #[inline] fn drop(&mut self) {} }