1half4 main(float2 coords) {
2    half r, g;
3    (true ? r : g) = 0;
4    (false ? r : g) = 1;
5    return half4(r, g, 0, 1);
6}
7