rust/src/test/run-pass/fixed-point-bind-box.rs

21 lines
447 B
Rust
Raw Normal View History

#[legacy_modes];
fn fix_help<A, B>(f: extern fn(fn@(A) -> B, A) -> B, x: A) -> B {
2012-08-01 17:30:05 -07:00
return f({|a|fix_help(f, a)}, x);
}
fn fix<A, B>(f: extern fn(fn@(A) -> B, A) -> B) -> fn@(A) -> B {
2012-08-01 17:30:05 -07:00
return {|a|fix_help(f, a)};
}
fn fact_(f: fn@(&&int) -> int, &&n: int) -> int {
// fun fact 0 = 1
2012-08-01 17:30:05 -07:00
return if n == 0 { 1 } else { n * f(n - 1) };
}
fn main() {
let fact = fix(fact_);
2011-07-27 14:19:39 +02:00
assert (fact(5) == 120);
assert (fact(2) == 2);
}