blob: 68744d1ba63a7928b304e350a27fbbc22cc11c6c [file] [log] [blame]
// PR c++/49691
struct A { int x; };
A* f();
struct B {
void g()
{
int(f()->x);
}
};