1#include <stdio.h>
2
3int global_var = 10;
4
5int
6main()
7{
8 printf(format: "Set a breakpoint here: %d.\n", global_var);
9 global_var = 20;
10 printf(format: "We should have stopped on the previous line: %d.\n", global_var);
11 global_var = 30;
12 return 0;
13}
14

source code of lldb/test/API/commands/watchpoints/watchpoint_disable/main.c