Dead
[official-gcc.git] / gomp-20050608-branch / gcc / testsuite / g++.old-deja / g++.pt / lookup4.C
blob3fd447ceec81a49ca13a8386350d28ca007c094b
1 // { dg-do assemble  }
3 void h(int);
5 template <class T>
6 class i {};
8 struct B
10   int i;
13 template <class T>
14 struct D : public B
16   void f();
17   void g() { h(i); }
20 template <class T>
21 void D<T>::f()
23   h(i);