hanchenye-llvm-project/lldb/test/lang/cpp/overloaded-functions/static-b.cpp

10 lines
78 B
C++

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