rust/src/test/run-pass/autobind.rs

14 lines
345 B
Rust
Raw Normal View History

// FIXME: Autobind doesn't work for bare functions currently
// because it would have to convert them to shared closures
// xfail-test
fn f<T>(x: [T]) -> T { ret x[0]; }
fn g(act: fn([int]) -> int) -> int { ret act([1, 2, 3]); }
fn main() {
2011-07-27 07:19:39 -05:00
assert (g(f) == 1);
let f1: fn([str]) -> str = f;
assert (f1(["x", "y", "z"]) == "x");
}