aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/g++.old-deja/g++.other/overload4.C
blob: 22478531b95f69c2f29e1bf3ecf02410b8c55c1e (plain)
1
2
3
4
5
6
7
8
9
10
// Build don't run:

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

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