leo/tests/compiler/integers/i64/min.leo
2022-07-28 16:23:16 -07:00

10 lines
189 B
Plaintext

/*
namespace: Compile
expectation: Pass
input_file: inputs/add.in
*/
function main(a: i64) -> i64 {
let b: i64 = -9223372036854775807i64;
return b - a; // -9223372036854775808i64
}