xref: /llvm-project/lldb/test/API/commands/expression/import-std-module/unique_ptr-dbg-info-content/main.cpp (revision cabee89bed69ce37c9e588f9190ed9c33f6bfdee)
1 #include <memory>
2 
3 struct Foo {
4   int a;
5 };
6 
main(int argc,char ** argv)7 int 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