Fix the next typo in mlist-cycle.rs; still doesn't work.

This commit is contained in:
Graydon Hoare 2010-07-13 14:27:23 -07:00
parent 1d1a7985a8
commit 2eba370aa2
1 changed files with 1 additions and 1 deletions

View File

@ -8,7 +8,7 @@ type list = tag(link(@cell), nil());
fn main() {
let @cell first = tup(@nil());
let @cell second = tup(@link(first));
first._0 = link(second);
first._0 = @link(second);
std.sys.rustrt.gc();
let @cell third = tup(@nil());
}