aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.9/gcc/testsuite/g++.dg/template/spec27.C
blob: a31adadd3e6112c506cc9816910810b8ceb7da5a (plain)
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() {}