xref: /llvm-project/lldb/test/API/functionalities/thread/state_after_expression/main.cpp (revision f4d427326539f007b05378eaf66018c10b651ad0)
1 #include <thread>
2 
thread_func()3 void thread_func() {
4   // Set a breakpoint here
5 }
6 
7 int
main()8 main()
9 {
10   // Set a breakpoint here
11   std::thread stopped_thread(thread_func);
12   stopped_thread.join();
13   return 0;
14 }
15