Bump github/codeql-action from 3.27.1 to 3.27.4
[glslang.git] / Test / spv.dead-after-return.vert
blob71726963ab2465eeec3514caf373364176563d0f
1 #version 450
3 layout(location =0 ) in int c;
4 layout(location =0 ) out int o;
6 void main() {
7   o = 1;
8   return;
9   o = 3;