summaryrefslogtreecommitdiff
path: root/gcc/testsuite/g++.old-deja/g++.pt/spec25.C
blob: 884abf07dee26c92ab9d4103a9e2183c8ae7e177 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
// Build don't link:

template <class T, int I>
struct S {
};

template <int I>
struct S <double, I> {
};

template <class T>
void f ()
{
  S<double, T::x> s;
}