summaryrefslogtreecommitdiff
path: root/lldb/test/API/functionalities/thread/crash_during_step/main.cpp
blob: 92aa2a96e61c38bd372c596d42974e9f806da160 (plain)
1
2
3
4
5
6
7
void (*crash)() = nullptr;

int main()
{
    crash(); // Set breakpoint here
    return 0;
}