1#include <stdio.h>
2
3void foo() {
4 int foo = 10;
5 printf(format: "%d\n", foo); // Set a breakpoint here.
6 foo = 20;
7 printf(format: "%d\n", foo);
8}
9
10int main() {
11 foo();
12 return 0;
13}
14

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