xref: /llvm-project/lldb/test/API/commands/expression/import-std-module/vector/main.cpp (revision 6face9119c811e06cfb284755953ba6cdbdaa22b)
1 #include <vector>
2 
3 typedef std::vector<long> vector_long;
main(int argc,char ** argv)4 int main(int argc, char **argv) {
5   std::vector<int> a = {3, 1, 2};
6   vector_long b = {3, 1, 2};
7   return 0; // Set break point at this line.
8 }
9