void func_inner() {
    int a = 1;  // Set breakpoint 1 here
}

int main() {
    func_inner();
    return 0; // Set breakpoint 2 here
}
