1#include <vector>
2
3typedef std::vector<long> vector_long;
4int 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

source code of lldb/test/API/commands/expression/import-std-module/vector/main.cpp