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