//===-- main.cpp ------------------------------------------------*- C++ -*-===// // // The LLVM Compiler Infrastructure // // This file is distributed under the University of Illinois Open Source // License. See LICENSE.TXT for details. // //===----------------------------------------------------------------------===// #include #include #include 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; }