1#include <memory>
2
3struct Foo {
4 int a;
5};
6
7int main(int argc, char **argv) {
8 std::unique_ptr<Foo> s(new Foo);
9 s->a = 3;
10 return s->a; // Set break point at this line.
11}
12

source code of lldb/test/API/commands/expression/import-std-module/unique_ptr-dbg-info-content/main.cpp