(root)/
gcc-13.2.0/
gcc/
testsuite/
gcc.dg/
c11-atomic-5.c
       1  /* PR c/82679 */
       2  /* { dg-do compile } */
       3  /* { dg-options "-std=gnu11" } */
       4  
       5  typedef _Atomic int A[10];
       6  A a;
       7  
       8  typedef _Atomic int I;
       9  typedef I T[10];
      10  T t;