]> git.lizzy.rs Git - rust.git/blob - src/test/run-pass/ivec-tag.rs
81ff6fd7adc9419b85724a7f4770e18760ca44d6
[rust.git] / src / test / run-pass / ivec-tag.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 fn producer(tx: &Sender<Vec<u8>>) {
14     tx.send(
15          vec!(1u8, 2u8, 3u8, 4u8, 5u8, 6u8, 7u8, 8u8, 9u8, 10u8, 11u8, 12u8,
16           13u8));
17 }
18
19 pub fn main() {
20     let (tx, rx) = channel::<Vec<u8>>();
21     let _prod = task::spawn(proc() {
22         producer(&tx)
23     });
24
25     let _data: Vec<u8> = rx.recv();
26 }