]> git.lizzy.rs Git - rust.git/blob - src/test/run-pass/issues/issue-3609.rs
Rollup merge of #54648 - alexcrichton:update-cargo, r=nikomatsakis
[rust.git] / src / test / run-pass / issues / issue-3609.rs
1 // Copyright 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 // run-pass
12 #![allow(unused_must_use)]
13 #![allow(dead_code)]
14 #![allow(unused_mut)]
15 use std::thread;
16 use std::sync::mpsc::Sender;
17
18 type RingBuffer = Vec<f64> ;
19 type SamplesFn = Box<FnMut(&RingBuffer) + Send>;
20
21 enum Msg
22 {
23     GetSamples(String, SamplesFn), // sample set name, callback which receives samples
24 }
25
26 fn foo(name: String, samples_chan: Sender<Msg>) {
27     thread::spawn(move|| {
28         let mut samples_chan = samples_chan;
29
30         let callback: SamplesFn = Box::new(move |buffer| {
31             for i in 0..buffer.len() {
32                 println!("{}: {}", i, buffer[i])
33             }
34         });
35
36         samples_chan.send(Msg::GetSamples(name.clone(), callback));
37     }).join();
38 }
39
40 pub fn main() {}