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