blob: 8ec9e01d0de097229fb87b17927c30d1b040bdca [file] [log] [blame]
// PR c++/56639
struct A {
int i;
static A* f();
};
struct B {
void g() {
int (A::f()->i);
}
};