mirror of
https://github.com/ProvableHQ/leo.git
synced 2024-12-25 19:22:01 +03:00
16 lines
197 B
Plaintext
16 lines
197 B
Plaintext
/*
|
|
namespace: Parse
|
|
expectation: Fail
|
|
*/
|
|
|
|
program test.aleo {
|
|
function inf() -> u8 {
|
|
inf();
|
|
}
|
|
|
|
function main(y: bool) -> bool {
|
|
inf();
|
|
return y;
|
|
}
|
|
}
|