xref: /llvm-project/lldb/test/API/functionalities/thread/crash_during_step/main.cpp (revision fdea9a4ec9b0d9585b8fe8a612686d9f44f40ddc)
1 void (*crash)() = nullptr;
2 
main()3 int main()
4 {
5     crash(); // Set breakpoint here
6     return 0;
7 }
8