Merge pull request #2892 from greg-lunarg/mb
[platform/upstream/glslang.git] / Test / spv.dead-after-return.vert
1 #version 450
2
3 layout(location =0 ) in int c;
4 layout(location =0 ) out int o;
5
6 void main() {
7   o = 1;
8   return;
9   o = 3;
10 }