12 lines
441 B
Plaintext
12 lines
441 B
Plaintext
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
|
|
*%%*/
|