]> git.lizzy.rs Git - rust.git/blob - src/test/run-pass/send-resource.rs
Account for --remap-path-prefix in save-analysis
[rust.git] / src / test / run-pass / send-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 // pretty-expanded FIXME #23616
12 // ignore-emscripten no threads support
13
14 #![feature(std_misc)]
15
16 use std::thread;
17 use std::sync::mpsc::channel;
18
19 struct test {
20   f: isize,
21 }
22
23 impl Drop for test {
24     fn drop(&mut self) {}
25 }
26
27 fn test(f: isize) -> test {
28     test {
29         f: f
30     }
31 }
32
33 pub fn main() {
34     let (tx, rx) = channel();
35
36     let t = thread::spawn(move|| {
37         let (tx2, rx2) = channel();
38         tx.send(tx2).unwrap();
39
40         let _r = rx2.recv().unwrap();
41     });
42
43     rx.recv().unwrap().send(test(42)).unwrap();
44
45     t.join();
46 }