aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.9/gcc/testsuite/g++.old-deja/g++.pt/memtemp77.C
blob: 6dd4b546c0c6fda6bb7c85d8948a259d3d51aff1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
// { dg-do run  }
extern "C" int strcmp(const char*, const char*);

template <class T>
struct S3
{
  template <class U>
  static const char* h(U);
};

template <>
template <>
const char* S3<double>::h(int) { return __PRETTY_FUNCTION__; }

template <>
template <>
const char* S3<char>::h(int) { return __PRETTY_FUNCTION__; }

int main()
{
  if (strcmp (S3<double>::h(7), 
	      "static const char* S3<T>::h(U) [with U = int; T = double]") == 0)
    return 0;
  else 
    return 1;
}