(root)/
gcc-13.2.0/
gcc/
testsuite/
gcc.c-torture/
execute/
20030128-1.c
       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  }