xref: /aosp_15_r20/external/angle/third_party/glslang/src/Test/hlsl.logicalConvert.frag (revision 8975f5c5ed3d1c378011245431ada316dfb6f244)
1float4 main() : SV_TARGET
2{
3	if (!(0) && (0) || (!1))
4	    return 0.0.xxxx;
5	if (0)
6	    return 0.0.xxxx;
7	if (!(bool)0)
8		return 0.0.xxxx;
9	if (!0)
10		return 0.0.xxxx;
11	if (!(bool)1)
12		return 0.0.xxxx;
13	if (!1)
14		return 0.0.xxxx;
15    if (0 || 1)
16		return 0.0.xxxx;
17    if (1 && 0)
18		return 0.0.xxxx;
19    if (1 || false)
20		return 0.0.xxxx;
21    if (true && 1)
22		return 0.0.xxxx;
23}