• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
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