mirror of
https://github.com/ProvableHQ/leo.git
synced 2024-12-25 11:12:48 +03:00
16 lines
185 B
Plaintext
16 lines
185 B
Plaintext
|
/*
|
||
|
namespace: Compile
|
||
|
expectation: Fail
|
||
|
*/
|
||
|
|
||
|
function hi() -> u8 {
|
||
|
return 0u8;
|
||
|
}
|
||
|
|
||
|
function tester(hi: u8) -> u8 {
|
||
|
return 0u8;
|
||
|
}
|
||
|
|
||
|
function main (y: bool) -> bool {
|
||
|
return y;
|
||
|
}
|