ext_gpu_shader4: add compiler tests for everything
[piglit.git] / tests / spec / glsl-1.20 / compiler / structure-and-array-operations / array-predecrement.vert
blob46eb6037acc561598dba4fc9f0fae4acf2a7a028
1 /* [config]
2  * expect_result: fail
3  * glsl_version: 1.20
4  * [end config]
5  *
6  * From page 35 (page 41 of the PDF) of the GLSL 1.20 spec:
7  *
8  *     "In total, only the following operators are allowed to operate on
9  *     arrays and structures as whole entities:
10  *
11  *     field or method selector .
12  *     equality                 == !=
13  *     assignment               =
14  *     indexing (arrays only)   []"
15  */
16 #version 120
18 uniform vec4 a[2];
20 void main()
22   gl_Position = (--a)[0];