xref: /aosp_15_r20/external/angle/third_party/glslang/src/Test/hlsl.void.frag (revision 8975f5c5ed3d1c378011245431ada316dfb6f244)
1void foo1() {}
2void foo2(void) {}
3
4void PixelShaderFunction(float4 input) : COLOR0
5{
6    foo1();
7    foo2();
8    return;
9}