blob: 5eee89fdc57f997f56f533aa4ff7bffe533d5fe9 [file] [log] [blame]
#![crate_name="inline_dtor"]
pub struct Foo;
impl Drop for Foo {
#[inline]
fn drop(&mut self) {}
}