Files
rust/tests/ui/runtime/deep_recursion.rs

11 lines
250 B
Rust
Raw Permalink Normal View History

2025-06-07 16:17:21 +05:00
//! Checks deep recursion behavior.
//@ 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); }