xref: /llvm-project/lldb/test/API/commands/expression/import-std-module/vector-dbg-info-content/main.cpp (revision 61e2841d8b83319e90cd44cf77770d2e41080cc2)
1 #include <__verbose_abort>
2 #include <vector>
3 
4 // Some expressons from the test need this symbol to be compiled when libcxx is
5 // built statically.
6 void *libcpp_verbose_abort_ptr = (void *)&std::__libcpp_verbose_abort;
7 
8 struct Foo {
9   int a;
10 };
11 
12 int main(int argc, char **argv) {
13   std::vector<Foo> a = {{3}, {1}, {2}};
14   return 0; // Set break point at this line.
15 }
16