1#include <thread>
2
3void thread_func() {
4 // Set a breakpoint here
5}
6
7int
8main()
9{
10 // Set a breakpoint here
11 std::thread stopped_thread(thread_func);
12 stopped_thread.join();
13 return 0;
14}
15

source code of lldb/test/API/functionalities/thread/state_after_expression/main.cpp