leo/tests/parser/functions/infinite_recursion.leo

13 lines
132 B
Plaintext
Raw Normal View History

2022-01-28 21:34:02 +03:00
/*
namespace: Parse
expectation: Pass
*/
function inf() {
inf();
}
function main(y: bool) -> bool {
inf();
return y;
}