6 // Check that an array can't be used as a function out parameter in
9 // In this test, the array is declared using C-style array
10 // declaration syntax (float x[2] as opposed to float[2] x).
12 // From section 5.8 of the GLSL 1.10 spec:
13 // Other binary or unary expressions, non-dereferenced arrays,
14 // function names, swizzles with repeated fields, and constants
15 // cannot be l-values.
19 void f(out float x[2])