mirror of
https://github.com/AleoHQ/leo.git
synced 2024-12-19 07:32:26 +03:00
15 lines
173 B
Plaintext
15 lines
173 B
Plaintext
/*
|
|
namespace: Parse
|
|
expectation: Pass
|
|
*/
|
|
|
|
function x(const y: u32) {
|
|
if y < 5u32 {
|
|
x(y+1);
|
|
}
|
|
}
|
|
|
|
function main(y: bool) -> bool {
|
|
x(1u32);
|
|
return y;
|
|
} |