18e9e4468aaa7b3c7621aaec368221a2e978fe5a
[mesa.git] / src / glsl / tests / attribute-01.glsl
1 /* FAIL - attribute cannot have type int */
2 attribute int i;
3
4 void main()
5 {
6 gl_Position = vec4(1.0);
7 }