llvm/lldb/test/API/commands/expression/import-std-module/shared_ptr-dbg-info-content/main.cpp

#include <memory>

struct Foo {
  int a;
};

int main(int argc, char **argv) {
  std::shared_ptr<Foo> s(new Foo);
  s->a = 3;
  return s->a; // Set break point at this line.
}