921e5a0eb4
From-SVN: r14840
8 lines
169 B
C
8 lines
169 B
C
// PRMS Id: 4333
|
|
// Bug: g++ can't deal with casts to pointer to member function.
|
|
// Build don't link:
|
|
|
|
class A { };
|
|
typedef void (A::* pmf)();
|
|
void foo () { (pmf) 0; }
|