llvm-project/lldb/test/API/functionalities/thread/crash_during_step/main.cpp

8 lines
93 B
C++

void (*crash)() = nullptr;
int main()
{
crash(); // Set breakpoint here
return 0;
}