FSF GCC merge 02/23/03
[official-gcc.git] / gcc / testsuite / g++.old-deja / g++.mike / pmf4.C
blob02e5b10c1ac2c24d49e56f882a2a51490ef1877a
1 // Build don't link:
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   }