]> git.lizzy.rs Git - rust.git/blob - src/test/auxiliary/issue-2526.rs
Auto merge of #22517 - brson:relnotes, r=Gankro
[rust.git] / src / test / auxiliary / issue-2526.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 #![crate_name="issue_2526"]
12 #![crate_type = "lib"]
13
14 #![feature(unsafe_destructor)]
15
16 struct arc_destruct<T> {
17   _data: int,
18 }
19
20 #[unsafe_destructor]
21 impl<T: Sync> Drop for arc_destruct<T> {
22     fn drop(&mut self) {}
23 }
24
25 fn arc_destruct<T: Sync>(data: int) -> arc_destruct<T> {
26     arc_destruct {
27         _data: data
28     }
29 }
30
31 fn arc<T: Sync>(_data: T) -> arc_destruct<T> {
32     arc_destruct(0)
33 }
34
35 fn init() -> arc_destruct<context_res> {
36     arc(context_res())
37 }
38
39 struct context_res {
40     ctx : int,
41 }
42
43 impl Drop for context_res {
44     fn drop(&mut self) {}
45 }
46
47 fn context_res() -> context_res {
48     context_res {
49         ctx: 0
50     }
51 }
52
53 pub type context = arc_destruct<context_res>;