1#include <vector>
2#include <string>
3
4void f() {}
5
6int main() {
7 int foo = 10;
8 int *bar = new int(4);
9 std::string baz = "85";
10
11 f(); // break here
12 f(); // break here
13 return 0;
14}
15

source code of lldb/test/API/python_api/sbvalue_persist/main.cpp