1 2 3 4 5 6 7 8 9 10
int main(int argc, char const *argv[]) { int a = 0; int b = 1; a = b + 1; // Set breakpoint here b = a + 1; return 0; }