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