leo/tests/compiler/function/return.leo

14 lines
184 B
Plaintext

/*
namespace: Compile
expectation: Pass
input_file: inputs/dummy.in
*/
function one() -> u32 {
return 1u32;
}
function main(y: bool) -> bool {
return (one() == 1u32) == y;
}