15 lines
159 B
Rust
15 lines
159 B
Rust
// -*- rust -*-
|
|
|
|
// error-pattern:1 == 2
|
|
|
|
fn child() {
|
|
assert (1 == 2);
|
|
}
|
|
|
|
fn main() {
|
|
let port[int] p = port();
|
|
spawn child();
|
|
let int x;
|
|
p |> x;
|
|
}
|