1
2out vec4 sk_FragColor;
3vec4 main() {
4    mat2 x = mat2(0.0, 1.0, 2.0, 3.0);
5    vec2 y = vec4(x).xy;
6    return y.xyxy;
7}
8