leo/tests/parser/functions/bounded_recursion.leo
2022-10-05 16:54:50 -07:00

18 lines
252 B
Plaintext

/*
namespace: Parse
expectation: Fail
*/
program test.aleo {
function x(constant y: u32) -> u8 {
if y < 5u32 {
x(y+1u32);
}
}
function main(y: bool) -> bool {
x(1u32);
return y;
}
}