leo/tests/parser/functions/bounded_recursion.leo

15 lines
176 B
Plaintext

/*
namespace: Parse
expectation: Pass
*/
function x(constant y: u32) {
if y < 5u32 {
x(y+1);
}
}
function main(y: bool) -> bool {
x(1u32);
return y;
}