aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.9/gcc/testsuite/g++.dg/diagnostic/bindings1.C
blob: 4972377a212e3b32dbc4ea34fa00498c75d0a545 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
// PR c++/45487
// { dg-do run  }

extern "C" int strcmp(const char*, const char*);

template <typename T>
const char* foo(T, typename T::type c) { return __PRETTY_FUNCTION__; }

struct x {typedef int type;};

int main()
{
  if (strcmp (foo(x(), 3), "const char* foo(T, typename T::type) "
	      "[with T = x; typename T::type = int]") == 0)
    return 0;
  else 
    return 1;
}