aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.9/gcc/testsuite/g++.dg/template/crash72.C
blob: 5ab53656119ef17a520c6d804173ca6b030ad234 (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
// PR c++/29225
// { dg-do compile }

template <typename L, typename R> bool operator< (L x, R y);
struct T { int t (); };
class S {};

struct U
{
   typedef int (T::* M) ();
   M m;

   bool operator() (S &x)
   {
     T a;
     return (a.*m) < x;	// { dg-error "invalid use of non-static member" }
   }
};

void foo (S &x)
{
  U m;
  m.m = &T::t;
  m (x);
}