rs6000: Relax some FLOAT128 expander condition for FLOAT128_IEEE_P [PR105359]
[official-gcc.git] / gcc / testsuite / g++.dg / parse / ambig9.C
blob68744d1ba63a7928b304e350a27fbbc22cc11c6c
1 // PR c++/49691
3 struct A { int x; };
4 A* f();
5 struct B {
6   void g()
7   {
8     int(f()->x);
9   }