]> git.lizzy.rs Git - rust.git/blob - src/test/run-pass/resource-in-struct.rs
Merge branch 'master' into cfg_tmp_dir
[rust.git] / src / test / run-pass / resource-in-struct.rs
1 // Copyright 2012 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 #![feature(unsafe_destructor)]
12
13 // Ensures that class dtors run if the object is inside an enum
14 // variant
15
16 use std::cell::Cell;
17
18 type closable<'a> = &'a Cell<bool>;
19
20 struct close_res<'a> {
21   i: closable<'a>,
22
23 }
24
25 #[unsafe_destructor]
26 impl<'a> Drop for close_res<'a> {
27     fn drop(&mut self) {
28         self.i.set(false);
29     }
30 }
31
32 fn close_res(i: closable) -> close_res {
33     close_res {
34         i: i
35     }
36 }
37
38 enum option<T> { none, some(T), }
39
40 fn sink(_res: option<close_res>) { }
41
42 pub fn main() {
43     let c = &Cell::new(true);
44     sink(option::none);
45     sink(option::some(close_res(c)));
46     assert!(!c.get());
47 }