OSDN Git Service

* g++.dg/template/defarg-1.C: New test.
[pf3gnuchains/gcc-fork.git] / gcc / testsuite / g++.dg / template / defarg1.C
1 struct Outer {
2     template <int I, int J=I> struct Inner {};
3 };
4
5 void f() {
6   Outer::Inner<2> i;
7 }