OSDN Git Service

/cp
[pf3gnuchains/gcc-fork.git] / gcc / testsuite / g++.dg / template / defarg2.C
1 struct X {
2     X ();
3 };
4
5 template <int> struct O {
6     struct I {
7         I (const X & = X());
8     };
9 };
10 template struct O<2>;