xref: /llvm-project/lldb/test/API/commands/expression/import-std-module/deque-dbg-info-content/main.cpp (revision 99451b4453688a94c6014cac233d371ab4cc342d)
1 #include <deque>
2 
3 struct Foo {
4   int a;
5 };
6 
main(int argc,char ** argv)7 int main(int argc, char **argv) {
8   std::deque<Foo> a = {{3}, {1}, {2}};
9   return 0; // Set break point at this line.
10 }
11