diff options
Diffstat (limited to 'src/test/run-pass/acyclic-unwind.rs')
| -rw-r--r-- | src/test/run-pass/acyclic-unwind.rs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/test/run-pass/acyclic-unwind.rs b/src/test/run-pass/acyclic-unwind.rs index 38de9082..27cffad4 100644 --- a/src/test/run-pass/acyclic-unwind.rs +++ b/src/test/run-pass/acyclic-unwind.rs @@ -1,6 +1,6 @@ // -*- rust -*- -io fn f(chan[int] c) +impure fn f(chan[int] c) { type t = tup(int,int,int); @@ -23,7 +23,7 @@ io fn f(chan[int] c) } -io fn main() { +impure fn main() { let port[int] p = port(); spawn f(chan(p)); let int i; |