Merge remote branch 'origin/master' into nv50-compiler
[mesa.git] / src / glsl / tests / attribute-03.glsl
1 /* FAIL - attribute cannot have type ivec3 */
2 attribute ivec3 i;
3
4 void main()
5 {
6 gl_Position = vec4(1.0);
7 }