blob: 6060d64cebf11a4230dfb390830f215864315c14 [file] [edit]
//! Test error for explicit destructor method calls via UFCS
//@ run-rustfix
#![allow(dropping_references)]
struct Foo;
impl Drop for Foo {
fn drop(&mut self) {}
}
fn main() {
drop(Foo) //~ ERROR explicit use of destructor method
}