]> git.lizzy.rs Git - rust.git/blob - src/test/run-pass/issue-10802.rs
Auto merge of #22517 - brson:relnotes, r=Gankro
[rust.git] / src / test / run-pass / issue-10802.rs
1 // Copyright 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 #![allow(unknown_features)]
12 #![feature(box_syntax)]
13
14 struct DroppableStruct;
15 enum DroppableEnum {
16     DroppableVariant1, DroppableVariant2
17 }
18
19 static mut DROPPED: bool = false;
20
21 impl Drop for DroppableStruct {
22     fn drop(&mut self) {
23         unsafe { DROPPED = true; }
24     }
25 }
26 impl Drop for DroppableEnum {
27     fn drop(&mut self) {
28         unsafe { DROPPED = true; }
29     }
30 }
31
32 trait MyTrait { }
33 impl MyTrait for Box<DroppableStruct> {}
34 impl MyTrait for Box<DroppableEnum> {}
35
36 struct Whatever { w: Box<MyTrait+'static> }
37 impl  Whatever {
38     fn new(w: Box<MyTrait+'static>) -> Whatever {
39         Whatever { w: w }
40     }
41 }
42
43 fn main() {
44     {
45         let f = box DroppableStruct;
46         let _a = Whatever::new(box f as Box<MyTrait>);
47     }
48     assert!(unsafe { DROPPED });
49     unsafe { DROPPED = false; }
50     {
51         let f = box DroppableEnum::DroppableVariant1;
52         let _a = Whatever::new(box f as Box<MyTrait>);
53     }
54     assert!(unsafe { DROPPED });
55 }