]> git.lizzy.rs Git - rust.git/blob - src/test/run-pass/issue-3609.rs
c5ae1460a2cdcc528df40cb1bd24e950a8d6e0da
[rust.git] / src / test / run-pass / 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 use std::task;
12
13 type RingBuffer = Vec<f64> ;
14 type SamplesFn = proc(samples: &RingBuffer);
15
16 enum Msg
17 {
18     GetSamples(~str, SamplesFn), // sample set name, callback which receives samples
19 }
20
21 fn foo(name: ~str, samples_chan: Sender<Msg>) {
22     task::spawn(proc() {
23         let mut samples_chan = samples_chan;
24         let callback: SamplesFn = proc(buffer) {
25             for i in range(0u, buffer.len()) {
26                 println!("{}: {}", i, buffer[i])
27             }
28         };
29         samples_chan.send(GetSamples(name.clone(), callback));
30     });
31 }
32
33 pub fn main() {}