12 lines
209 B
Rust
12 lines
209 B
Rust
type foo = { mutable z : fn@() };
|
|
|
|
fn nop() { }
|
|
fn nop_foo(_y: @int, _x : @foo) { }
|
|
|
|
fn o() -> @int { @10 }
|
|
|
|
fn main() {
|
|
let w = @{ mutable z: bind nop() };
|
|
let x = bind nop_foo(o(), w);
|
|
w.z = x;
|
|
} |