overload3.C   [plain text]


// { dg-do assemble  }
// Bug: bar is considered to be overloaded (i.e. its
//   IDENTIFIER_GLOBAL_VALUES are TREE_LISTs) even though it isn't,
//   so default_conversion thinks it can't resolve the name.

void foo ();
void bar ();

void baz ()
{
  void (*p)() = 1 ? (void (*)()) &foo : bar;
}