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

10 lines
78 B
C++

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