blob: d1b6116b5b75b599d2506414a5353dd04d03c1b4 [file] [log] [blame]
#include <chrono>
#include <stdio.h>
#include <thread>
int main(int argc, char const *argv[])
{
static bool done = false;
while (!done)
{
std::this_thread::sleep_for(std::chrono::milliseconds{100});
}
printf("Set a breakpoint here.\n");
return 0;
}