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