struct-recursion.c 203 B

1234567891011
  1. // RUN: %clang_cc1 %s -fsyntax-only
  2. // C99 6.7.2.3p11
  3. // mutually recursive structs
  4. struct s1 { struct s2 *A; };
  5. struct s2 { struct s1 *B; };
  6. // both types are complete now.
  7. struct s1 a;
  8. struct s2 b;