rust/src/test/run-pass/cycle-collection4.rs
2012-03-26 18:35:18 -07:00

10 lines
177 B
Rust

type foo = { mut z : fn@() };
fn nop() { }
fn nop_foo(_y: [int], _x : @foo) { }
fn main() {
let w = @{ mut z: bind nop() };
let x = bind nop_foo([], w);
w.z = x;
}