Merge pull request #2976 from jeremy-lunarg/hayes-fix-2975
[platform/upstream/glslang.git] / Test / spv.dead-after-continue.vert
1 #version 450
2
3 layout(location =0 ) in int c;
4 layout(location =0 ) out int o;
5
6 void main() {
7   int i;
8   for (i=0; i < 5; i++) {
9     o = 1;
10     continue;
11     o = 2;
12   }
13   o = 3;
14 }