diff options
| author | Graydon Hoare <[email protected]> | 2011-04-19 13:35:49 -0700 |
|---|---|---|
| committer | Graydon Hoare <[email protected]> | 2011-04-19 13:35:49 -0700 |
| commit | d2bd07dcb02783063375b6c8532fceaf9fa9d50f (patch) | |
| tree | a253b5eadb140d14bc99d1456e316ce1e210a6be /src/test/run-pass/task-comm-0.rs | |
| parent | rustc: Allow glue to be emitted even for scalar types; this is necessary to s... (diff) | |
| download | rust-d2bd07dcb02783063375b6c8532fceaf9fa9d50f.tar.xz rust-d2bd07dcb02783063375b6c8532fceaf9fa9d50f.zip | |
Remove effect system from src.
Diffstat (limited to 'src/test/run-pass/task-comm-0.rs')
| -rw-r--r-- | src/test/run-pass/task-comm-0.rs | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/test/run-pass/task-comm-0.rs b/src/test/run-pass/task-comm-0.rs index 9030340c..e1473548 100644 --- a/src/test/run-pass/task-comm-0.rs +++ b/src/test/run-pass/task-comm-0.rs @@ -1,15 +1,15 @@ // xfail-stage0 -impure fn main() -> () { +fn main() -> () { test05(); } -impure fn test05_start(chan[int] ch) { +fn test05_start(chan[int] ch) { ch <| 10; ch <| 20; ch <| 30; } -impure fn test05() { +fn test05() { let port[int] po = port(); let chan[int] ch = chan(po); spawn test05_start(chan(po)); |