1#version 130 2 3void main() 4{ 5 float foo; 6 float undefined; 7 8 foo = undefined; 9 10 gl_Position = vec4(1.0); 11} 12 13