// was previously accepted in error by my compiler.  should require semicolons after struct decls.
int test(void) {
  struct sa {  int a; }
  struct sb {  int b; }
  return 0;
}
