xref: /llvm-project/lldb/test/API/python_api/sbvalue_persist/main.cpp (revision 99451b4453688a94c6014cac233d371ab4cc342d)
1 #include <vector>
2 #include <string>
3 
f()4 void f() {}
5 
main()6 int 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