granite-rust/tests/ui/deep.rs

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

9 lines
213 B
Rust
Raw Normal View History

//@ run-pass
//@ ignore-emscripten apparently blows the stack
fn f(x: isize) -> isize {
if x == 1 { return 1; } else { let y: isize = 1 + f(x - 1); return y; }
2010-06-23 21:03:09 -07:00
}
pub fn main() { assert_eq!(f(5000), 5000); }