llvm/lldb/test/API/commands/frame/language/main.cpp

#include <stdio.h>
#include "other.h"

int
main()
{
  int test_var = 10;
  Other::DoSomethingElse();
  return 0;
}