summaryrefslogtreecommitdiffstats
path: root/src/test/ui/explicit/explicit-call-to-dtor.rs
blob: 0656871eb1b34c058906ed24a99ef2f16186b4d2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
// run-rustfix
struct Foo {
    x: isize
}

impl Drop for Foo {
    fn drop(&mut self) {
        println!("kaboom");
    }
}

fn main() {
    let x = Foo { x: 3 };
    println!("{}", x.x);
    x.drop();   //~ ERROR explicit use of destructor method
}