xref: /llvm-project/lldb/test/API/commands/expression/import-std-module/missing-module-sources/main.cpp (revision 99b7b41edf4fbc2d6e52bc4524c956e8f69042d9)
1 #include <vector>
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