1/* PASS */
2
3uniform float a;
4uniform float b;
5
6void main()
7{
8  ivec2 c;
9
10  c = ivec2(a, b);
11
12  gl_Position = gl_Vertex;
13}
14