rust/src/test/ui/illegal-ufcs-drop.fixed

11 lines
154 B
Rust

// run-rustfix
struct Foo;
impl Drop for Foo {
fn drop(&mut self) {}
}
fn main() {
drop(&mut Foo) //~ ERROR explicit use of destructor method
}