aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.9/gcc/testsuite/g++.old-deja/g++.benjamin/13478.C
blob: e1d52e14b06580a420dae69b2c6e986c9a7716e1 (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
27
28
29
30
// { dg-do assemble  }
// 981203 bkoz
// g++/13478
  
class A {};
class AData {};

typedef void (A::* hand) (void);

struct hand_table {
  const int data1;
  const hand data2;
};

class Agent : public A {
public:
  enum { first = 1, last };
protected:
  static const hand_table table_1[];
  static const AData 	  table_2;
private:
  void foo (void);
};

const hand_table Agent::table_1[] = 
{
   {0,     &Agent::table_2},
   {first, &Agent::foo},
   {last,  &(hand)Agent::foo} // { dg-error "" } no match
};