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

17 lines
171 B
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);
}