leo/tests/compiler/integers/i64/max.leo

11 lines
175 B
Plaintext

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