]> git.lizzy.rs Git - rust.git/blob - src/test/run-pass/issue-6892.rs
rustdoc: Replace no-pretty-expanded with pretty-expanded
[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 // pretty-expanded FIXME #23616
15
16 struct Foo;
17 struct Bar { x: int }
18 struct Baz(int);
19 enum FooBar { _Foo(Foo), _Bar(uint) }
20
21 static mut NUM_DROPS: uint = 0;
22
23 impl Drop for Foo {
24     fn drop(&mut self) {
25         unsafe { NUM_DROPS += 1; }
26     }
27 }
28 impl Drop for Bar {
29     fn drop(&mut self) {
30         unsafe { NUM_DROPS += 1; }
31     }
32 }
33 impl Drop for Baz {
34     fn drop(&mut self) {
35         unsafe { NUM_DROPS += 1; }
36     }
37 }
38 impl Drop for FooBar {
39     fn drop(&mut self) {
40         unsafe { NUM_DROPS += 1; }
41     }
42 }
43
44 fn main() {
45     assert_eq!(unsafe { NUM_DROPS }, 0);
46     { let _x = Foo; }
47     assert_eq!(unsafe { NUM_DROPS }, 1);
48     { let _x = Bar { x: 21 }; }
49     assert_eq!(unsafe { NUM_DROPS }, 2);
50     { let _x = Baz(21); }
51     assert_eq!(unsafe { NUM_DROPS }, 3);
52     { let _x = FooBar::_Foo(Foo); }
53     assert_eq!(unsafe { NUM_DROPS }, 5);
54     { let _x = FooBar::_Bar(42); }
55     assert_eq!(unsafe { NUM_DROPS }, 6);
56
57     { let _ = Foo; }
58     assert_eq!(unsafe { NUM_DROPS }, 7);
59     { let _ = Bar { x: 21 }; }
60     assert_eq!(unsafe { NUM_DROPS }, 8);
61     { let _ = Baz(21); }
62     assert_eq!(unsafe { NUM_DROPS }, 9);
63     { let _ = FooBar::_Foo(Foo); }
64     assert_eq!(unsafe { NUM_DROPS }, 11);
65     { let _ = FooBar::_Bar(42); }
66     assert_eq!(unsafe { NUM_DROPS }, 12);
67 }