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

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

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

int i;

int main()
{
  f(&i);
  f2(&i);
}