Remove old autovect-branch by moving to "dead" directory.
[official-gcc.git] / old-autovect-branch / gcc / testsuite / g++.old-deja / g++.pt / lookup3.C
blob5a7a03722ca594569c46ddabb9353bb4b82bcca0
1 // { dg-do run  }
2 template<class T>
3 class A {
4 public:
5   void f() { }
6 };
8 class B : public A<int> {
9 public:
10   void f();
13 int main()
15   B b;
16   B& b1 = b;
17   b1.A<int>::f();