While it is still technically possible to test stage 0, it is not part of any of the main testing rules and maintaining xfail-stage0 is a chore. Nobody should worry about how tests fare in stage0.
16 lines
364 B
Rust
16 lines
364 B
Rust
// -*- rust -*-
|
|
|
|
use std;
|
|
|
|
fn main() { let t = spawn child(10); std::task::join(t); }
|
|
|
|
fn child(i: int) { log_err i; assert (i == 10); }
|
|
|
|
// Local Variables:
|
|
// mode: rust;
|
|
// fill-column: 78;
|
|
// indent-tabs-mode: nil
|
|
// c-basic-offset: 4
|
|
// buffer-file-coding-system: utf-8-unix
|
|
// compile-command: "make -k -C $RBUILD 2>&1 | sed -e 's/\\/x\\//x:\\//g'";
|
|
// End:
|