]> git.lizzy.rs Git - rust.git/blob - src/test/run-pass/issue-6892.rs
6faca339651c07b77d091200363385f9a40e6be8
[rust.git] / src / test / run-pass / issue-6892.rs
1 // Copyright 2012-2014 The Rust Project Developers. See the COPYRIGHT
2 // file at the top-level directory of this distribution and at
3 // http://rust-lang.org/COPYRIGHT.
4 //
5 // Licensed under the Apache License, Version 2.0 <LICENSE-APACHE or
6 // http://www.apache.org/licenses/LICENSE-2.0> or the MIT license
7 // <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your
8 // option. This file may not be copied, modified, or distributed
9 // except according to those terms.
10
11 // Ensures that destructors are run for expressions of the form "let _ = e;"
12 // where `e` is a type which requires a destructor.
13
14 struct Foo;
15 struct Bar { x: int }
16 struct Baz(int);
17 enum FooBar { _Foo(Foo), _Bar(uint) }
18
19 static mut NUM_DROPS: uint = 0;
20
21 impl Drop for Foo {
22     fn drop(&mut self) {
23         unsafe { NUM_DROPS += 1; }
24     }
25 }
26 impl Drop for Bar {
27     fn drop(&mut self) {
28         unsafe { NUM_DROPS += 1; }
29     }
30 }
31 impl Drop for Baz {
32     fn drop(&mut self) {
33         unsafe { NUM_DROPS += 1; }
34     }
35 }
36 impl Drop for FooBar {
37     fn drop(&mut self) {
38         unsafe { NUM_DROPS += 1; }
39     }
40 }
41
42 fn main() {
43     assert_eq!(unsafe { NUM_DROPS }, 0);
44     { let _x = Foo; }
45     assert_eq!(unsafe { NUM_DROPS }, 1);
46     { let _x = Bar { x: 21 }; }
47     assert_eq!(unsafe { NUM_DROPS }, 2);
48     { let _x = Baz(21); }
49     assert_eq!(unsafe { NUM_DROPS }, 3);
50     { let _x = FooBar::_Foo(Foo); }
51     assert_eq!(unsafe { NUM_DROPS }, 5);
52     { let _x = FooBar::_Bar(42); }
53     assert_eq!(unsafe { NUM_DROPS }, 6);
54
55     { let _ = Foo; }
56     assert_eq!(unsafe { NUM_DROPS }, 7);
57     { let _ = Bar { x: 21 }; }
58     assert_eq!(unsafe { NUM_DROPS }, 8);
59     { let _ = Baz(21); }
60     assert_eq!(unsafe { NUM_DROPS }, 9);
61     { let _ = FooBar::_Foo(Foo); }
62     assert_eq!(unsafe { NUM_DROPS }, 11);
63     { let _ = FooBar::_Bar(42); }
64     assert_eq!(unsafe { NUM_DROPS }, 12);
65 }