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

static int Static()
{
  return 1;
}

int CallStaticB()
{
  return Static();
}