2003-12-26 Guilhem Lavaux <guilhem@kaffe.org>
[official-gcc.git] / gcc / testsuite / g++.old-deja / g++.mike / pmf4.C
blob944993a98dbe62bb1298d3b07c66fcb479a87a66
1 // { dg-do assemble  }
3 class NF { };
5 struct QF {
6   NF nf;
8   typedef float(NF::* const NPF)() const;
10   void p (NPF npf) const {
11     float q = (nf.*npf)();
12   }