OSDN Git Service

cp/ChangeLog
[pf3gnuchains/gcc-fork.git] / gcc / testsuite / g++.old-deja / g++.other / overload3.C
1 // { dg-do link  }
2
3 void f(const int *);
4 void f(int *) {}
5
6 void f2(const volatile int *);
7 void f2(volatile int *) {}
8
9 int i;
10
11 int main()
12 {
13   f(&i);
14   f2(&i);
15 }
16