15 lines
136 B
Rust
15 lines
136 B
Rust
tag taggy {
|
|
cons(@mutable taggy);
|
|
nil;
|
|
}
|
|
|
|
fn f() {
|
|
let box = @mutable nil;
|
|
*box = cons(box);
|
|
}
|
|
|
|
fn main() {
|
|
f();
|
|
}
|
|
|