ir_to_mesa: Support texture rectangle targets
[mesa/nouveau-pmpeg.git] / src / glsl / tests / array-12.glsl
blob7fc9579452f14207afb5d0a48b7f16ca885a0d72
1 #version 120
2 /* FAIL - array must have an implicit or explicit size */
4 void main()
6   vec4 a[];
8   a = vec4 [2] (vec4(1.0), vec4(2.0));
10   gl_Position = gl_Vertex;