diff options
Diffstat (limited to 'src/test/run-pass')
| -rw-r--r-- | src/test/run-pass/acyclic-unwind.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/test/run-pass/acyclic-unwind.rs b/src/test/run-pass/acyclic-unwind.rs index 192a01f3..c9ed2ae3 100644 --- a/src/test/run-pass/acyclic-unwind.rs +++ b/src/test/run-pass/acyclic-unwind.rs @@ -5,7 +5,7 @@ io fn f(chan[int] c) type t = tup(int,int,int); // Allocate a box. - let @t x = tup(1,2,3); + let @t x = @tup(1,2,3); // Signal parent that we've allocated a box. c <| 1; |