Remove old autovect-branch by moving to "dead" directory.
[official-gcc.git] / old-autovect-branch / gcc / testsuite / g++.old-deja / g++.other / overload5.C
blob929876737c4b2538fd484c794379e846a8a3ee02
1 // { dg-do link  }
3 struct S {};
5 struct T : public S {};
7 struct U : public T {};
9 void f(int T::*) {}
10 void f(int U::*);
12 void g(void (T::*)(int)) {}
13 void g(void (U::*)(int));
15 int main()
17   int S::*ip;
18   void (S::*fp)(int);
20   f(ip);
21   g(fp);