1 // PR c++/24139
2 
3 template<typename T>
4 struct O {
5   struct I;
6 };
7 
8 template<>
9 struct O<int>::I
10 {
11   I();
12 };
13 
14 O<int>::I::I() {}
15