blob: 92935c0e451d3c195bc39c3613572f3c47816f74 [file] [log] [blame]
// Build don't link:
// submitted by David C Binderman <dcb@pncl.co.uk>
struct S
{
void f();
};
void (S ::* pmf) ();
S * pf;
void
f()
{
pmf = & pf->f; // ERROR - not a valid pmf expression
}