Merge pull request #2891 from dneto0/hlsl-namespace
[platform/upstream/glslang.git] / Test / spv.dead-after-discard.frag
1 #version 450
2
3 layout(location =0 ) in float c;
4 layout(location =0 ) out int o;
5
6 void main() {
7   o = 1;
8   discard;
9   o = 3;
10 }