1### Compilation failed: 2 3error: 20: value is out of range for type 'short': 99999 4 cast_int_to_short(99999); 5 ^^^^^^^^^^^^^^^^^^^^^^^^ 6error: 21: value is out of range for type 'short': 67890 7 cast_int2_to_short2(int2(12345, 67890)); 8 ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ 9error: 22: value is out of range for type 'int': 5000000000 10 cast_float_to_int(5000000000.0); 11 ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ 12error: 23: value is out of range for type 'int': 3000000000 13 cast_float3_to_int3(float3(3000000000, 2000000, 1000)); 14 ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ 15error: 24: value is out of range for type 'short': 32768 16 negate_short(-32768); 17 ^^^^^^^^^^^^^^^^^^^^ 18error: 25: value is out of range for type 'int': 2147483648 19 negate_int4(int4(-2147483648)); 20 ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ 216 errors 22