]> git.lizzy.rs Git - rust.git/blob - src/test/run-pass/drop-struct-as-object.rs
rollup merge of #20736: akiss77/pr-u8-c_char
[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 #![allow(unknown_features)]
15 #![feature(box_syntax)]
16
17 static mut value: uint = 0;
18
19 struct Cat {
20     name : uint,
21 }
22
23 trait Dummy {
24     fn get(&self) -> uint;
25 }
26
27 impl Dummy for Cat {
28     fn get(&self) -> uint { self.name }
29 }
30
31 impl Drop for Cat {
32     fn drop(&mut self) {
33         unsafe { value = self.name; }
34     }
35 }
36
37 pub fn main() {
38     {
39         let x = box Cat {name: 22};
40         let nyan: Box<Dummy> = x as Box<Dummy>;
41     }
42     unsafe {
43         assert_eq!(value, 22);
44     }
45 }