21 lines
378 B
Rust
21 lines
378 B
Rust
// -*- rust -*-
|
|
// xfail-win32
|
|
use std;
|
|
import task;
|
|
import comm::port;
|
|
import comm::recv;
|
|
|
|
fn child() { assert (1 == 2); }
|
|
|
|
fn parent() {
|
|
// Since this task isn't supervised it won't bring down the whole
|
|
// process
|
|
task::unsupervise();
|
|
let p = port::<int>();
|
|
task::spawn {|| child(); };
|
|
let x = recv(p);
|
|
}
|
|
|
|
fn main() {
|
|
task::spawn {|| parent(); };
|
|
} |