OSDN Git Service

* g++.old-deja/g++.other/thunk1.C: New test.
[pf3gnuchains/gcc-fork.git] / gcc / testsuite / g++.old-deja / g++.other / overload3.C
1 // Build don't run:
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