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

11 lines
162 B
Plaintext
Raw Normal View History

2021-05-10 20:19:19 +03:00
/*
namespace: Compile
expectation: Pass
input_file: inputs/add.in
2021-05-10 20:19:19 +03:00
*/
function main(a: i64) -> i64 {
let b: i64 = 9223372036854775807i64;
return b - a;
2021-05-10 20:19:19 +03:00
}