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

     1  unsigned char x = 50;
     2  volatile short y = -5;
     3  
     4  int main ()
     5  {
     6    x /= y;
     7    if (x != (unsigned char) -10)
     8      abort ();
     9    exit (0);
    10  }