1short4 s4_neg = short4(-32766, -32767, -32769, -32768); // error -32769 2short4 s4_pos = short4(32765, 32768, 32766, 32767); // error 32768 3short cast_short = short(32768.); // error 4 5/*%%* 6value is out of range for type 'short': -32769 7value is out of range for type 'short': 32768 8value is out of range for type 'short': 32768 9*%%*/ 10