xref: /aosp_15_r20/external/skia/tests/sksl/errors/OverflowShortLiteral.glsl (revision c8dee2aa9b3f27cf6c858bd81872bdeb2c07ed17)
1### Compilation failed:
2
3error: 1: value is out of range for type 'short': -32769
4short4 s4_neg = short4(-32766, -32767, -32769, -32768); // error -32769
5                                       ^^^^^^
6error: 2: value is out of range for type 'short': 32768
7short4 s4_pos = short4(32765, 32768, 32766, 32767);     // error 32768
8                              ^^^^^
9error: 3: value is out of range for type 'short': 32768
10short cast_short = short(32768.);                       // error
11                         ^^^^^^
123 errors
13