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