]> git.lizzy.rs Git - rust.git/blob - src/test/run-pass/unwind-resource.rs
switch Drop to `&mut self`
[rust.git] / src / test / run-pass / unwind-resource.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 // xfail-fast
12
13 extern mod extra;
14
15 use std::comm::*;
16 use std::task;
17
18 struct complainer {
19   c: SharedChan<bool>,
20 }
21
22 impl Drop for complainer {
23     fn drop(&mut self) {
24         error!("About to send!");
25         self.c.send(true);
26         error!("Sent!");
27     }
28 }
29
30 fn complainer(c: SharedChan<bool>) -> complainer {
31     error!("Hello!");
32     complainer {
33         c: c
34     }
35 }
36
37 fn f(c: SharedChan<bool>) {
38     let _c = complainer(c);
39     fail!();
40 }
41
42 pub fn main() {
43     let (p, c) = stream();
44     let c = SharedChan::new(c);
45     task::spawn_unlinked(|| f(c.clone()) );
46     error!("hiiiiiiiii");
47     assert!(p.recv());
48 }