Remove old autovect-branch by moving to "dead" directory.
[official-gcc.git] / old-autovect-branch / gcc / testsuite / g++.dg / template / defarg1.C
blob1b0e4a24a15f0e5a65aca1ddfd87f610997b223a
1 struct Outer {
2     template <int I, int J=I> struct Inner {};
3 };
5 void f() {
6   Outer::Inner<2> i;