summaryrefslogtreecommitdiff
path: root/gcc/testsuite/g++.old-deja/g++.jason/overload2.C
blob: 564194253835c49593688873eeb62036bf7ff74f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
// Bug: foo and bar are considered to be overloaded (i.e. their
//   IDENTIFIER_GLOBAL_VALUES are TREE_LISTs) even though they aren't,
//   so ?: thinks it can't resolve the names.
// Build don't link:

void foo ();
void bar ();

void baz ()
{
  void (*p)() = 1 ? foo : bar;	// gets bogus error - wrongful overloading
}