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