leo/tests/parser/functions/bounded_recursion.leo
2022-05-17 14:41:30 +02:00

16 lines
186 B
Plaintext

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