blob: 082a151952f840ad9dd678ac3500c48e0c1e9e05 [file] [log] [blame]
#version 130
void main()
{
int defined = 2;
int undefined;
int fooInt;
fooInt -= undefined;
fooInt -= defined;
gl_Position = vec4(1.0);
}