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