]> git.lizzy.rs Git - rust.git/blob - src/test/run-pass/drop-struct-as-object.rs
rollup merge of #17355 : gamazeps/issue17210
[rust.git] / src / test / run-pass / drop-struct-as-object.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 // Test that destructor on a struct runs successfully after the struct
12 // is boxed and converted to an object.
13
14 static mut value: uint = 0;
15
16 struct Cat {
17     name : uint,
18 }
19
20 trait Dummy {
21     fn get(&self) -> uint;
22 }
23
24 impl Dummy for Cat {
25     fn get(&self) -> uint { self.name }
26 }
27
28 impl Drop for Cat {
29     fn drop(&mut self) {
30         unsafe { value = self.name; }
31     }
32 }
33
34 pub fn main() {
35     {
36         let x = box Cat {name: 22};
37         let nyan: Box<Dummy> = x as Box<Dummy>;
38     }
39     unsafe {
40         assert_eq!(value, 22);
41     }
42 }