1#version 130 2 3void main() 4{ 5 int defined = 2; 6 int undefined; 7 int fooInt; 8 9 fooInt += undefined; 10 fooInt += defined; 11} 12 13