2021-05-14 22:34:39 +03:00
|
|
|
/*
|
|
|
|
namespace: Compile
|
|
|
|
expectation: Fail
|
|
|
|
*/
|
|
|
|
|
2022-07-29 02:23:16 +03:00
|
|
|
function main() -> i32 {
|
|
|
|
let a: i32 = -2147483647i32;
|
|
|
|
|
|
|
|
return a - 2i32; // This line attempts to return -2147483649i32 however, the smallest i32 value is -2147483648i32.
|
|
|
|
}
|