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