(root)/
gcc-13.2.0/
gcc/
testsuite/
g++.old-deja/
g++.other/
overload4.C
// { dg-do link  }

void f(int* const volatile * const * const*);
void f(int* const * const * const*) {}

int main()
{
  int*** ip;
  f(&ip);
}