xref: /aosp_15_r20/external/angle/third_party/glslang/src/Test/spv.dead-after-switch-break.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  switch(c) {
9    case 0: o=1;
10      break;
11      o=2;
12   default: break;
13  }
14  o = 3;
15}
16