xref: /aosp_15_r20/external/mesa3d/src/compiler/glsl/tests/warnings/009-div-assign.vert (revision 6104692788411f58d303aa86923a9ff6ecaded22)
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  gl_Position = vec4(1.0);
13}
14
15