xref: /aosp_15_r20/external/angle/third_party/glslang/src/Test/spv.dead-after-continue.vert (revision 8975f5c5ed3d1c378011245431ada316dfb6f244)
1#version 450
2
3layout(location =0 ) in int c;
4layout(location =0 ) out int o;
5
6void main() {
7  int i;
8  for (i=0; i < 5; i++) {
9    o = 1;
10    continue;
11    o = 2;
12  }
13  o = 3;
14}
15