10 lines
170 B
Rust
10 lines
170 B
Rust
|
|
|
|
// xfail-stage0
|
|
// -*- rust -*-
|
|
use std;
|
|
import std::task::*;
|
|
|
|
fn main() { auto other = spawn child(); log_err "1"; yield(); join(other); }
|
|
|
|
fn child() { log_err "2"; } |