aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.9/gcc/testsuite/g++.old-deja/g++.pt/spec25.C
blob: d056f03b1b33f241c343c88089e957ae1efbb848 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
// { dg-do assemble  }

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

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

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