xref: /llvm-project/lldb/test/API/commands/expression/top-level/main.cpp (revision 99451b4453688a94c6014cac233d371ab4cc342d)
1 #include <stdio.h>
2 
3 extern int doTest();
4 
main()5 int main()
6 {
7     printf("%d\n", doTest()); // Set breakpoint here
8     return 0;
9 }
10