xref: /aosp_15_r20/external/skia/tests/sksl/errors/CommasWithArrays.glsl (revision c8dee2aa9b3f27cf6c858bd81872bdeb2c07ed17)
1### Compilation failed:
2
3error: 9: operator ',' can not operate on arrays (or structs containing arrays)
4    myStruct, 123;
5    ^^^^^^^^
6error: 10: operator ',' can not operate on arrays (or structs containing arrays)
7    123, myStruct;
8         ^^^^^^^^
9error: 11: operator ',' can not operate on arrays (or structs containing arrays)
10    myArray, 123;
11    ^^^^^^^
12error: 12: operator ',' can not operate on arrays (or structs containing arrays)
13    123, myArray;
14         ^^^^^^^
15error: 13: operator ',' can not operate on arrays (or structs containing arrays)
16    myArray, myStruct;
17    ^^^^^^^
18error: 14: operator ',' can not operate on arrays (or structs containing arrays)
19    myStruct, myArray;
20    ^^^^^^^^
216 errors
22