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