rustc/tests/ui/illegal-ufcs-drop.fixed
2024-05-08 17:27:53 +02:00

14 lines
187 B
Plaintext

// 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
}