1int foo(void);
2static int static_value = 0;
3
4int
5bar()
6{
7 static_value++;
8 return static_value;
9}
10
11int main (int argc, char const *argv[])
12{
13 bar(); // breakpoint_in_main
14 return foo();
15}
16

source code of lldb/test/API/lang/mixed/main.c