1#include "foo.h"
2#include <iostream>
3
4int main(int argc, char const *argv[]) {
5 std::cout << "Hello World!" << std::endl; // main breakpoint 1
6 foo();
7 return 0;
8}
9

source code of lldb/test/API/tools/lldb-dap/terminated-event/main.cpp