1#version 120 2/* FAIL - attribute cannot have array type in GLSL 1.20 */ 3attribute vec4 i[10]; 4 5void main() 6{ 7 gl_Position = vec4(1.0); 8} 9