llvm-project/lldb/packages/Python/lldbsuite/test/expression_command/top-level/main.cpp

10 lines
127 B
C++

#include <stdio.h>
extern int doTest();
int main()
{
printf("%d\n", doTest()); // Set breakpoint here
return 0;
}