FSF GCC merge 02/23/03
[official-gcc.git] / gcc / testsuite / g++.old-deja / g++.pt / lookup3.C
blob9ada72f87b51ee7d5759c1a397ea0aaf0d87b581
1 template<class T>
2 class A {
3 public:
4   void f() { }
5 };
7 class B : public A<int> {
8 public:
9   void f();
12 int main()
14   B b;
15   B& b1 = b;
16   b1.A<int>::f();