leo/tests/compiler/function/return.leo
2021-05-05 18:29:44 +03:00

14 lines
169 B
Plaintext

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