summaryrefslogtreecommitdiffstats
path: root/gnu/llvm/lldb/packages/Python/lldbsuite/test/functionalities/step_scripted/main.c
blob: bfd8a35d55626378fb42a9ea0b03504f7cd68d6f (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
#include <stdio.h>

void foo() {
  int foo = 10; 
  printf("%d\n", foo); // Set a breakpoint here. 
  foo = 20;
  printf("%d\n", foo);
}

int main() {
  foo();
  return 0;
}