rust/tests/ui/illegal-ufcs-drop.fixed

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

14 lines
188 B
Rust
Raw Permalink Normal View History

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