]> git.lizzy.rs Git - rust.git/blob - src/test/run-pass/unwind-resource.rs
doc: remove incomplete sentence
[rust.git] / src / test / run-pass / unwind-resource.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 use std::sync::mpsc::{channel, Sender};
12 use std::task;
13
14 struct complainer {
15     tx: Sender<bool>,
16 }
17
18 impl Drop for complainer {
19     fn drop(&mut self) {
20         println!("About to send!");
21         self.tx.send(true).unwrap();
22         println!("Sent!");
23     }
24 }
25
26 fn complainer(tx: Sender<bool>) -> complainer {
27     println!("Hello!");
28     complainer {
29         tx: tx
30     }
31 }
32
33 fn f(tx: Sender<bool>) {
34     let _tx = complainer(tx);
35     panic!();
36 }
37
38 pub fn main() {
39     let (tx, rx) = channel();
40     task::spawn(move|| f(tx.clone()));
41     println!("hiiiiiiiii");
42     assert!(rx.recv().unwrap());
43 }