forked from OSchip/llvm-project
16 lines
200 B
C
16 lines
200 B
C
|
int foo(void);
|
||
|
static int static_value = 0;
|
||
|
|
||
|
int
|
||
|
bar()
|
||
|
{
|
||
|
static_value++;
|
||
|
return static_value;
|
||
|
}
|
||
|
|
||
|
int main (int argc, char const *argv[])
|
||
|
{
|
||
|
bar(); // breakpoint_in_main
|
||
|
return foo();
|
||
|
}
|