1#include <stdio.h>
2
3int
4call_me(int input)
5{
6 return printf(format: "I was called: %d.\n", input);
7}
8
9int
10main()
11{
12 int test_var = 10;
13 printf (format: "Set a breakpoint here: %d.\n", test_var);
14 return call_me(input: 100);
15}
16

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