predicate aware uninitialized analysis
[official-gcc.git] / gcc / testsuite / g++.dg / parse / ptrmem1.C
blobb1174c7d97b34f03dae8c4d3a0ce8911d6843bfe
1 struct A {
2   void f(int = 0) const;
3 };
5 typedef void (A::*PF)(int) const;
7 void f()
9   PF pf = &A::f;