1// { dg-do run  }
2// PRMS id: 8279
3
4int main ()
5{
6  char *const *p = 0;
7  char **q = 0;
8
9  (void)(p - q);
10  (void)(q - p);
11}
12