summaryrefslogtreecommitdiff
path: root/gcc/testsuite/g++.old-deja/g++.pt/spec11.C
blob: 340b58e73ec5f0fef4f0eece790d49fa26fcc5d3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
extern "C" void abort();

template <class T>
struct S
{
  template <class U>
  int f(U u);
};

template <>
template <>
int S<char>::f(int i) { return 1; }

int main()
{
  S<char> sc;

  if (sc.f(3) != 1)
    abort();
}