llvm/lldb/test/API/commands/expression/top-level/main.cpp

#include <stdio.h>

extern int doTest();

int main()
{
    printf("%d\n", doTest()); // Set breakpoint here   
    return 0;
}