bolt/deps/llvm-18.1.8/lldb/test/API/commands/expression/top-level/main.cpp
2025-02-14 19:21:04 +01:00

9 lines
127 B
C++

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