2003-12-26 Guilhem Lavaux <guilhem@kaffe.org>
[official-gcc.git] / gcc / testsuite / g++.old-deja / g++.pt / memclass1.C
blobe1d748a3ce17b574f8c85577f70792bdfc16c578
1 // { dg-do run  }
2 template <class T> struct A {
3   template <class U> struct B {
4     template <class V> void f (V) { }
5     void g () { }
6   };
7 };
9 int main ()
11   A<int>::B<char> b;
12   b.f (42);
13   b.g ();