rust/src/test/compile-fail/borrowck-call-sendfn.rs
2012-07-25 05:45:52 -07:00

9 lines
110 B
Rust

// xfail-test #2978
fn call(x: @{mut f: fn~()}) {
x.f(); //~ ERROR foo
//~^ NOTE bar
}
fn main() {}