OSDN Git Service

cp:
[pf3gnuchains/gcc-fork.git] / gcc / testsuite / g++.old-deja / g++.pt / spec25.C
1 // Build don't link:
2
3 template <class T, int I>
4 struct S {
5 };
6
7 template <int I>
8 struct S <double, I> {
9 };
10
11 template <class T>
12 void f ()
13 {
14   S<double, T::x> s;
15 }