aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.9/gcc/testsuite/g++.old-deja/g++.eh/spec7.C
blob: 2ef88a2490063f1cf187b954cdf038a9de57a629 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
// { dg-do run  }
// Test that we allow simple throw specs on pointers.

void f() throw () { }
void (*pf)() throw () = f;

struct A
{
  void g() throw () { }
  static void (A::*pmf)() throw ();
};

void (A::* A::pmf)() = &A::g;

int main()
{
  pf ();
  A a;
  (a.*A::pmf)();
}