Files
clang-p2996/lldb/test/lang/cpp/overloaded-functions/static-b.cpp
Sean Callanan 485f732b84 Fixed a problem where the expression parser would
not find multiple functions with the same name but
different types.  Now we keep track of what types
we've already reported for a function and only elide
functions if we've already reported a conflicting
one.

Also added a test case.

<rdar://problem/11367837>

llvm-svn: 180167
2013-04-24 00:34:41 +00:00

10 lines
78 B
C++

static int Static()
{
return 1;
}
int CallStaticB()
{
return Static();
}