// OPTIONS: -Ot def foo (x) { bar (x - 1) } and bar (x : int) { if (x < 0) {} else foo (x) } foo (100000000); /* BEGIN-OUTPUT END-OUTPUT */