1// Expect 6 errors 2 3const int intMin = -2147483648; 4const int intMinMinusOne = -2147483649; // error 5const int intMax = 2147483647; 6const int intMaxPlusOne = 2147483648; // error 7 8short4 s4_neg = short4(-32766, -32767, -32769, -32768); // error -32769 9short4 s4_pos = short4(32765, 32768, 32766, 32767); // error 32768 10 11int cast_int = int(2147483648.); // error 12short cast_short = short(32768.); // error 13