xref: /llvm-project/lldb/test/API/commands/expression/import-std-module/empty-module/main.cpp (revision 99451b4453688a94c6014cac233d371ab4cc342d)
1 #include <algorithm>
2 
main(int argc,char ** argv)3 int main(int argc, char **argv) {
4   // Makes sure we have the mock libc headers in the debug information.
5   libc_struct s;
6   std::vector<int> v;
7   return 0; // Set break point at this line.
8 }
9