rust/src/test/run-pass/cycle-collection.rs

15 lines
129 B
Rust
Raw Normal View History

enum taggy {
2012-03-26 20:35:18 -05:00
cons(@mut taggy),
nil,
}
fn f() {
2012-03-26 20:35:18 -05:00
let box = @mut nil;
*box = cons(box);
}
fn main() {
f();
}