2003-12-26 Guilhem Lavaux <guilhem@kaffe.org>
[official-gcc.git] / gcc / testsuite / g++.old-deja / g++.jason / pmf.C
blobb601dd9ffff89de4662bf89944be8de4e1bea80f
1 // { dg-do assemble  }
2 // PRMS Id: 4333
3 // Bug: g++ can't deal with casts to pointer to member function.
5 class A { };
6 typedef void (A::* pmf)();
7 void foo () { (pmf) 0; }