llvm-project/lldb/packages/Python/lldbsuite/test/functionalities/frame-language/main.cpp

11 lines
115 B
C++

#include <stdio.h>
#include "other.h"
int
main()
{
int test_var = 10;
Other::DoSomethingElse();
return 0;
}