Skip to content

Commit 2eba370

Browse files
committed
Fix the next typo in mlist-cycle.rs; still doesn't work.
1 parent 1d1a798 commit 2eba370

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/test/run-pass/mlist-cycle.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ type list = tag(link(@cell), nil());
88
fn main() {
99
let @cell first = tup(@nil());
1010
let @cell second = tup(@link(first));
11-
first._0 = link(second);
11+
first._0 = @link(second);
1212
std.sys.rustrt.gc();
1313
let @cell third = tup(@nil());
1414
}

0 commit comments

Comments
 (0)