1#include <stdio.h>
2
3int
4call_me(int input)
5{
6 return input;
7}
8
9int
10main()
11{
12 int value = call_me(input: 0); // Set a breakpoint here
13 while (value < 10)
14 {
15 printf(format: "Add conditions to this breakpoint: %d.\n", value++);
16 }
17 return 0;
18}
19

source code of lldb/test/API/commands/expression/result_numbering/main.c