FSF GCC merge 02/23/03
[official-gcc.git] / gcc / testsuite / g++.old-deja / g++.pt / memclass1.C
blob5ad839c231e198b8294c04e78ce72673ed84eb61
1 template <class T> struct A {
2   template <class U> struct B {
3     template <class V> void f (V) { }
4     void g () { }
5   };
6 };
8 int main ()
10   A<int>::B<char> b;
11   b.f (42);
12   b.g ();