int test(void) {
  struct sa {  int *a; };
  struct sa s1;
  int b;
  s1->a = &b;
  b = *s1->a;
  return 0;
}
