blob: 32d62bc5fd0aaaca556f93da3b1384b3be71196a [file] [log] [blame]
#version 310 es
precision highp float;
precision highp int;
struct S2 {
int m;
};
struct S1 {
S2 m;
};
void main() {
S1 v = S1(S2(0));
}