modernc.org/ccgo/v3@v3.16.14/lib/testdata/gcc-9.1.0/gcc/testsuite/gcc.c-torture/compile/20050206-1.c (about)

     1  unsigned short foo (void)
     2  {
     3    unsigned short u[1] = { 1 };
     4    u[0] = 0;
     5    u[1] = 1;
     6    u[2] = 2;
     7    return u[0] + u[1] + u[2];
     8  }