Dead
[official-gcc.git] / gomp-20050608-branch / gcc / testsuite / g++.dg / template / spec27.C
bloba31adadd3e6112c506cc9816910810b8ceb7da5a
1 // PR c++/24139
3 template<typename T>
4 struct O {
5   struct I;
6 };
8 template<>
9 struct O<int>::I
11   I();
14 O<int>::I::I() {}