OSDN Git Service

2011-02-20 Paolo Carlini <paolo.carlini@oracle.com>
[pf3gnuchains/gcc-fork.git] / gcc / testsuite / g++.dg / template / spec27.C
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() {}