OSDN Git Service

2011-02-20 Paolo Carlini <paolo.carlini@oracle.com>
[pf3gnuchains/gcc-fork.git] / gcc / testsuite / g++.dg / template / nested4.C
1 template <typename T> struct A { 
2     template<typename S> struct B { typedef A<S> X; }; 
3  
4 }; 
5  
6 template<typename> void f() { 
7     typedef A<int>::B<double>::X X; 
8
9  
10 template void f<int> ();