Files
clang-p2996/lldb/test/API/tools/lldb-vscode/terminated-event/main.cpp
Pavel Labath 22887ff964 Revert "Send statistics in initialized event"
The test is failing on linux.

This reverts commits 7fe3586cda and
d599ac41aa.
2022-11-16 12:20:21 +01:00

9 lines
167 B
C++

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