2011-10-18 17:07:40 -05:00
|
|
|
// FIXME: Autobind doesn't work for bare functions currently
|
|
|
|
// because it would have to convert them to shared closures
|
|
|
|
// xfail-test
|
|
|
|
|
2011-10-25 08:56:55 -05:00
|
|
|
fn f<T>(x: [T]) -> T { ret x[0]; }
|
2011-07-08 07:28:46 -05:00
|
|
|
|
2011-09-12 04:27:30 -05:00
|
|
|
fn g(act: fn([int]) -> int) -> int { ret act([1, 2, 3]); }
|
2011-07-08 07:28:46 -05:00
|
|
|
|
|
|
|
fn main() {
|
2011-07-27 07:19:39 -05:00
|
|
|
assert (g(f) == 1);
|
2011-09-12 04:27:30 -05:00
|
|
|
let f1: fn([str]) -> str = f;
|
2011-08-19 17:16:48 -05:00
|
|
|
assert (f1(["x", "y", "z"]) == "x");
|
2011-07-18 10:41:35 -05:00
|
|
|
}
|