(root)/
gcc-13.2.0/
gcc/
testsuite/
g++.dg/
overload/
cond2.C
struct C
{
  operator int();
};

struct D
{
  operator int();
};

int main()
{
  C c; D d;
  true ? c : d;
}