Merge pull request #2913 from greg-lunarg/i2905
[platform/upstream/glslang.git] / Test / spv.for-nobody.vert
1 #version 450
2 layout(location=0) out highp int r;
3 void main() {
4   int i;
5   for (i=0; i<10; i++);
6   r = i;
7 }