1/* FAIL: assignment of a vec2 to a float */ 2#version 120 3 4void main() 5{ 6 float a; 7 vec4 b; 8 9 b.x = 6.0; 10 a = b.xy; 11} 12