summaryrefslogtreecommitdiff
path: root/gcc/testsuite/g++.old-deja/g++.other/overload4.C
blob: a81fd2db92a36b6f4ab6e00fa0470a856c2ca11f (plain)
1
2
3
4
5
6
7
8
9
10
// { dg-do link  }

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

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