rust/src/test/run-pass/deep.rs
2010-06-23 21:03:09 -07:00

15 lines
163 B
Rust

// -*- rust -*-
fn f(int x) -> int {
if (x == 1) {
ret 1;
} else {
let int y = 1 + f(x-1);
ret y;
}
}
fn main() {
check (f(5000) == 5000);
}