aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.9/gcc/testsuite/g++.old-deja/g++.jason/template6.C
blob: 2aec05c81e993c14d18d327095e707c8e182c24c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
// { dg-do run  }
// PRMS Id: 4656
// Testcase for use of member pointers in template resolution

template <class T> class A {
 public:
  A() : a(1) {}
  T a;
};

template <class T>
int foo (T A<int>::*p)
{
  return 0;
}
int main()
{
  int A<int>::*pm = &A<int>::a;	// { dg-bogus "" } failed temp resolution
  foo (pm);
  return 0;
}