blob: a31adadd3e6112c506cc9816910810b8ceb7da5a [file] [log] [blame]
// PR c++/24139
template<typename T>
struct O {
struct I;
};
template<>
struct O<int>::I
{
I();
};
O<int>::I::I() {}