1cb93a386Sopenharmony_ciuniform half4 colorGreen, colorRed; 2cb93a386Sopenharmony_ci 3cb93a386Sopenharmony_cihalf4 main(float2 coords) { 4cb93a386Sopenharmony_ci float test1[4] = float[4](1, 2, 3, 4); 5cb93a386Sopenharmony_ci float2 test2[2] = float2[2](float2(1, 2), float2(3, 4)); 6cb93a386Sopenharmony_ci float4x4 test3[1] = float4x4[1](float4x4(16)); 7cb93a386Sopenharmony_ci 8cb93a386Sopenharmony_ci return (test1[3] + test2[1][1] + test3[0][3][3] == 24) ? colorGreen : colorRed; 9cb93a386Sopenharmony_ci} 10