]> git.lizzy.rs Git - rust.git/blob - src/test/run-pass/unwind-resource.rs
Auto merge of #54265 - arielb1:civilize-proc-macros, r=alexcrichton
[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 #![allow(non_camel_case_types)]
12 // ignore-emscripten no threads support
13
14 use std::sync::mpsc::{channel, Sender};
15 use std::thread;
16
17 struct complainer {
18     tx: Sender<bool>,
19 }
20
21 impl Drop for complainer {
22     fn drop(&mut self) {
23         println!("About to send!");
24         self.tx.send(true).unwrap();
25         println!("Sent!");
26     }
27 }
28
29 fn complainer(tx: Sender<bool>) -> complainer {
30     println!("Hello!");
31     complainer {
32         tx: tx
33     }
34 }
35
36 fn f(tx: Sender<bool>) {
37     let _tx = complainer(tx);
38     panic!();
39 }
40
41 pub fn main() {
42     let (tx, rx) = channel();
43     let t = thread::spawn(move|| f(tx.clone()));
44     println!("hiiiiiiiii");
45     assert!(rx.recv().unwrap());
46     drop(t.join());
47 }