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