#version 310 es
precision mediump float;

struct S {
  int m;
};

void f() {
  S v = S(0);
}

void main() {
  f();
  return;
}