blob: d8a99a0a2a851848ae65bb9076c1ad67f087a819 [file] [log] [blame]
const int intMin = -2147483648;
const int intMinMinusOne = -2147483649; // error
const int intMax = 2147483647;
const int intMaxPlusOne = 2147483648; // error
int cast_int = int(2147483648.); // error
/*%%*
integer is out of range for type 'int': -2147483649
integer is out of range for type 'int': 2147483648
integer is out of range for type 'int': 2147483648
*%%*/