int test(void) {
  struct sa {  int a; };
  struct sa s1;
  int b;
  s1.a = 1;
  b = s1.a;
  return 0;
}
