2003-12-26 Guilhem Lavaux <guilhem@kaffe.org>
[official-gcc.git] / gcc / testsuite / g++.old-deja / g++.jason / template21.C
blob86b6131368bf49239eb1e699ece85ec116f3ef9d
1 // { dg-do assemble  }
2 // Gosh, this works!
4 template<class T>
5 struct A
7     struct B
8     {
9         void bar();
10     };
11     struct C { };
14 template<class T> void A<T>::B::bar() { }
16 template class A<int>;