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