blob: 9c985ca84935da45b22ffdca5618359f803a138c [file] [log] [blame]
fn getbig(i: int) {
if i != 0 {
getbig(i - 1);
}
}
fn main() {
getbig(100000);
}