(root)/
gcc-13.2.0/
gcc/
testsuite/
g++.dg/
parse/
ambig9.C
// PR c++/49691

struct A { int x; };
A* f();
struct B {
  void g()
  {
    int(f()->x);
  }
};