[cfe-dev] Crash redeclaring function

Eli Friedman eli.friedman at gmail.com
Sat Jan 12 07:09:18 PST 2008


The following code:
int odd()
{
  return 0;
}

int odd()
{
  return 0;
}

Crashes with clang -fsyntax-only.  It should return an appropriate error.

-Eli



More information about the cfe-dev mailing list