blob: de5715321e81c773b5a8e7cd758d9d0b089f2285 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
// Test that a class with an unsendable field can't be
// sent
class foo {
let i: int;
let j: @str;
new(i:int, j: @str) { self.i = i; self.j = j; }
}
fn main() {
let cat = "kitty";
let po = comm::port(); //~ ERROR missing `send`
let ch = comm::chan(po); //~ ERROR missing `send`
comm::send(ch, foo(42, @cat)); //~ ERROR missing `send`
}
|