xref: /llvm-project/lldb/test/API/commands/expression/import-std-module/retry-with-std-module/main.cpp (revision 958608285eb4d04c6e3dc7071fa429b43597585b)
1*95860828SRaphael Isemann #include <vector>
2*95860828SRaphael Isemann 
main(int argc,char ** argv)3*95860828SRaphael Isemann int main(int argc, char **argv) {
4*95860828SRaphael Isemann   std::vector<int> a = {3, 1, 2};
5*95860828SRaphael Isemann   int local = 3;
6*95860828SRaphael Isemann   return 0; // Set break point at this line.
7*95860828SRaphael Isemann }
8