Merge remote branch 'origin/master' into nv50-compiler
[mesa.git] / src / glsl / tests / swiz-02.glsl
1 /* FAIL: assignment of a vec2 to a float */
2 #version 120
3
4 void main()
5 {
6 float a;
7 vec4 b;
8
9 b.x = 6.0;
10 a = b.xy;
11 }