Pavel Labath 22887ff964 Revert "Send statistics in initialized event"
The test is failing on linux.

This reverts commits 7fe3586cda5b683766ec6b6d5ca2d98c2baaf162 and
d599ac41aabddeb2442db7b31faacf143d63abe4.
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;
}