(root)/
gcc-13.2.0/
gcc/
testsuite/
gcc.dg/
torture/
pr89223.c
       1  /* { dg-do compile { target int128 } } */
       2  
       3  int a[5];
       4  unsigned __int128 b;
       5  void c()
       6  {
       7    b = 4;
       8    for (;; b--)
       9      a[b] = ({ a[b + b]; });
      10  }