2003-12-26 Guilhem Lavaux <guilhem@kaffe.org>
[official-gcc.git] / gcc / testsuite / g++.old-deja / g++.pt / defarg2.C
blobff036f1f0580fdfd9e94c674a55a98ea69734a0f
1 // { dg-do run  }
2 template <int S=0, class T=int>
3 struct X
4 {};
6 template <>
7 struct X<0,int>
8 {};
10 template <int S>
11 struct X<S,int>
12 : X<>
13 {};
15 int main()
17   X<1,int> x;