40ae704ff2
Introduce a temporary no-valgrind directive for the few that aren't clean
8 lines
165 B
Rust
8 lines
165 B
Rust
// -*- rust -*-
|
|
|
|
// error-pattern:1 == 2
|
|
// no-valgrind
|
|
|
|
fn child() { assert (1 == 2); }
|
|
|
|
fn main() { let p: port[int] = port(); spawn child(); let x: int; p |> x; } |