OSDN Git Service

* class.c (resolve_address_of_overloaded_function): Don't
[pf3gnuchains/gcc-fork.git] / gcc / testsuite / g++.old-deja / g++.other / overload4.C
1 // { dg-do link  }
2
3 void f(int* const volatile * const * const*);
4 void f(int* const * const * const*) {}
5
6 int main()
7 {
8   int*** ip;
9   f(&ip);
10 }