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