rust/tests/ui/drop/explicit-drop-call-error.fixed
2025-06-11 20:51:49 +05:00

16 lines
250 B
Rust

//! 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(&mut Foo) //~ ERROR explicit use of destructor method
}