summaryrefslogtreecommitdiff
path: root/gcc/testsuite/g++.old-deja/g++.jason/precedence.C
blob: a11abcdc52bed5e2d5457becb386c7bb3b0d891f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
// { dg-do assemble  }
// Bug: g++ groups ->* before casts.
// PRMS Id: 4484 (bug 4)

struct A { };
struct B : public A { void f (); };

void g ()
{
  A* ap = new B;
  void (B::*p)() = &B::f;

  ((B*)ap->*p)();		// { dg-bogus "" } incorrect precedence
}