1 #include <stdio.h>
2 #include <chrono>
3 #include <thread>
4 
5 void call_me() {
6   printf("I was called");
7   std::this_thread::sleep_for(std::chrono::seconds(3));
8 }
9 
10 int
11 main()
12 {
13   call_me(); // Set a breakpoint here
14   return 0;
15 }
16 
17