1cb93a386Sopenharmony_ciuniform half4 colorGreen, colorRed;
2cb93a386Sopenharmony_ci
3cb93a386Sopenharmony_cihalf4 main(float2 coords) {
4cb93a386Sopenharmony_ci    float result = 0;
5cb93a386Sopenharmony_ci    float2x2 a = float2x2(float3x3(1));           result += a[0][0];
6cb93a386Sopenharmony_ci    float2x2 b = float2x2(float4x4(1));           result += b[0][0];
7cb93a386Sopenharmony_ci    float3x3 c = float3x3(float4x4(1));           result += c[0][0];
8cb93a386Sopenharmony_ci    float3x3 d = float3x3(float2x2(1));           result += d[0][0];
9cb93a386Sopenharmony_ci    float4x4 e = float4x4(float3x3(float2x2(1))); result += e[0][0];
10cb93a386Sopenharmony_ci    float2x2 f = float2x2(float3x3(float4x4(1))); result += f[0][0];
11cb93a386Sopenharmony_ci
12cb93a386Sopenharmony_ci    return result == 6 ? colorGreen : colorRed;
13cb93a386Sopenharmony_ci}
14