blob: 6de64c0b3476734f3754d658a4b26b7a17fc20d6 [file] [log] [blame]
// PR c++/49691
// { dg-options -std=c++0x }
struct A { int x; };
A* f();
struct B {
void g()
{
int(f()->x);
}
};