Doc: Add Standard-Names ustrunc and sstrunc for integer modes
[official-gcc.git] / gcc / testsuite / g++.dg / template / decl2.C
blob3a77777bd0aa19db4780599d71821dd39abb7548
1 // PR c++/16162
3 template <int N> struct O { 
4   struct I { 
5     template <typename T> struct II { 
6       void f(); 
7     }; 
8   }; 
9 }; 
11 template <int N> 
12 template <typename T> 
13 void O<N>::I::II<T>::f () {}