]> git.lizzy.rs Git - rust.git/blob - src/test/auxiliary/issue-2526.rs
rollup merge of #24926: frewsxcv/patch-20
[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 use std::marker;
15
16 struct arc_destruct<T: Sync> {
17     _data: isize,
18     _marker: marker::PhantomData<T>
19 }
20
21 impl<T: Sync> Drop for arc_destruct<T> {
22     fn drop(&mut self) {}
23 }
24
25 fn arc_destruct<T: Sync>(data: isize) -> arc_destruct<T> {
26     arc_destruct {
27         _data: data,
28         _marker: marker::PhantomData
29     }
30 }
31
32 fn arc<T: Sync>(_data: T) -> arc_destruct<T> {
33     arc_destruct(0)
34 }
35
36 fn init() -> arc_destruct<context_res> {
37     arc(context_res())
38 }
39
40 struct context_res {
41     ctx : isize,
42 }
43
44 impl Drop for context_res {
45     fn drop(&mut self) {}
46 }
47
48 fn context_res() -> context_res {
49     context_res {
50         ctx: 0
51     }
52 }
53
54 pub type context = arc_destruct<context_res>;