rt_gccstream/gcc/testsuite/g++.old-deja/g++.other/overload4.C

11 lines
144 B
C

// { dg-do link }
void f(int* const volatile * const * const*);
void f(int* const * const * const*) {}
int main()
{
int*** ip;
f(&ip);
}