1#include <memory>
2
3int main(int argc, char **argv) {
4 std::shared_ptr<int> s(new int);
5 *s = 3;
6 return *s; // Set break point at this line.
7}
8

source code of lldb/test/API/commands/expression/import-std-module/shared_ptr/main.cpp