Daily bump.
[official-gcc.git] / gcc / testsuite / g++.old-deja / g++.pt / memclass20.C
blobc57c27dfe098ec1842c2cdad82c2bddebd553ce1
1 // Build don't link:
2 // Origin: Mark Mitchell <mark@codesourcery.com>
4 template <class X, class Y>
5 struct S{};
7 template <class X> 
8 struct S<int, X> {
9   template <class W>
10   struct I {};
13 template <class T>
14 void f() {
15   typename S<T, T>::I<T> si;
18 template void f<int>();