1#include <stdio.h>
2
3int g_global[3] = {0, 100000, 100000};
4
5void doSomething() {
6 g_global[0] = 1; // Set outer breakpoint here
7}
8
9int main() {
10 doSomething(); // Set a breakpoint here
11
12 return g_global[0];
13}
14

source code of lldb/test/API/functionalities/breakpoint/nested_breakpoint_commands/main.c