1 2 3 4 5 6 7 8 9 10
// PR c++/49691 struct A { int x; }; A* f(); struct B { void g() { int(f()->x); } };