blob: 033082d89de85570fb9c6fdab4782dc173b11983 [file] [log] [blame]
#version 310 es
struct S {
int m;
};
precision highp float;
precision highp int;
S A[4] = S[4](S(0), S(0), S(0), S(0));
void main() {
A[0] = S(1);
}