summaryrefslogtreecommitdiffstats
path: root/packages/Python/lldbsuite/test/python_api/sbvalue_persist/main.cpp
blob: 650d87acd6e6314de1129c54febd30d7e1009b41 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#include <vector>
#include <string>

void f() {}

int main() {
    int foo = 10;
    int *bar = new int(4);
    std::string baz = "85";
    
    f(); // break here
    f(); // break here
    return 0;
}
OpenPOWER on IntegriCloud