The test is failing on linux. This reverts commits 7fe3586cda5b683766ec6b6d5ca2d98c2baaf162 and d599ac41aabddeb2442db7b31faacf143d63abe4.
9 lines
167 B
C++
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;
|
|
}
|