xref: /aosp_15_r20/external/skia/resources/sksl/errors/BadIndex.rts (revision c8dee2aa9b3f27cf6c858bd81872bdeb2c07ed17)
1void int_not_array()      { int x = 2[0]; }
2void index_float2_twice() { float2 x = float2(0); int y = x[0][0]; }
3
4/*%%*
5expected array, but found 'int'
6expected array, but found 'float'
7*%%*/
8