1#include <stdlib.h>
2
3int main() {
4 int *var = malloc(size: sizeof(int)); // break here
5 free(ptr: var);
6 free(ptr: var);
7 return 0;
8}
9

source code of lldb/test/API/functionalities/process_crash_info/main.c