xref: /aosp_15_r20/external/skia/tests/sksl/errors/InvalidUnsizedArray.glsl (revision c8dee2aa9b3f27cf6c858bd81872bdeb2c07ed17)
1### Compilation failed:
2
3error: 1: unsized arrays are not permitted here
4in int[] a;
5^^^^^^^^^^
6error: 1: pipeline inputs not permitted in compute shaders
7in int[] a;
8^^^^^^^^^^
9error: 1: 'in' variables may not have unsized array type
10in int[] a;
11^^^^^^^^^^
12error: 2: multi-dimensional arrays are not supported
13int[][] b;
14^^^^^^^
15error: 5: unsized array must be the last member of a storage block
16    int[] c;
17    ^^^^^^^^
18error: 9: unsized array must be the last member of a storage block
19    int[] d;
20    ^^^^^^^^
21error: 14: unsized array must be the last member of a storage block
22    int[] f;
23    ^^^^^^^^
24error: 19: multi-dimensional arrays are not supported
25    int[][] h;
26    ^^^^^^^
27error: 23: unsized arrays are not permitted here
28    int[] i;
29    ^^^^^^^
30error: 23: unsized arrays are not permitted here
31    int[] i;
32    ^^^^^^^
3310 errors
34