OSDN Git Service

* g++.old-deja/g++.pt/static11.C: Add xtensa-*-elf* to the
[pf3gnuchains/gcc-fork.git] / gcc / testsuite / g++.old-deja / g++.pt / lookup3.C
1 template<class T>
2 class A {
3 public:
4   void f() { }
5 };
6
7 class B : public A<int> {
8 public:
9   void f();
10 };
11
12 int main()
13 {
14   B b;
15   B& b1 = b;
16   b1.A<int>::f();
17 }