[gnu.g++.bug] ambiguity not detected

jjc@relay.eu.net (James Clark) (12/01/89)

The following call of foo(0) is ambiguous (according to cfront 2.0);
g++ 1.36.1 does not detect this.

void foo(char);
void foo(char *);

void bar()
{
  foo(0);
}

James Clark
jjc@jclark.uucp