]> git.lizzy.rs Git - rust.git/blob - src/test/compile-fail/unsendable-class.rs
Fix misspelled comments.
[rust.git] / src / test / compile-fail / unsendable-class.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 use std::sync::mpsc::channel;
12
13 // Test that a class with an unsendable field can't be
14 // sent
15
16 use std::rc::Rc;
17
18 struct foo {
19   i: int,
20   j: Rc<String>,
21 }
22
23 fn foo(i:int, j: Rc<String>) -> foo {
24     foo {
25         i: i,
26         j: j
27     }
28 }
29
30 fn main() {
31   let cat = "kitty".to_string();
32   let (tx, _) = channel();
33   //~^ ERROR `core::kinds::Send` is not implemented
34   //~^^ ERROR `core::kinds::Send` is not implemented
35   tx.send(foo(42, Rc::new(cat)));
36 }