xref: /llvm-project/lldb/test/API/commands/frame/language/main.cpp (revision 99451b4453688a94c6014cac233d371ab4cc342d)
1 #include <stdio.h>
2 #include "other.h"
3 
4 int
main()5 main()
6 {
7   int test_var = 10;
8   Other::DoSomethingElse();
9   return 0;
10 }
11