1
1
mirror of https://github.com/AleoHQ/leo.git synced 2025-01-07 02:19:52 +03:00
leo/tests/compiler/integers/u64/min.leo

11 lines
153 B
Plaintext

/*
namespace: Compile
expectation: Pass
input_file: ../input/dummy.in
*/
function main(y: bool) -> bool {
const a: u64 = 0;
return y == true;
}