OSDN Git Service

* parser.c (cp_parser_class_specifier): Set class location to that
[pf3gnuchains/gcc-fork.git] / gcc / testsuite / g++.dg / template / decl2.C
1 // PR c++/16162
2
3 template <int N> struct O { 
4   struct I { 
5     template <typename T> struct II { 
6       void f(); 
7     }; 
8   }; 
9 }; 
10  
11 template <int N> 
12 template <typename T> 
13 void O<N>::I::II<T>::f () {}