summaryrefslogtreecommitdiff
path: root/lldb/test/API/commands/expression/import-std-module/vector/main.cpp
blob: 668b59181d421d0b7cc9e18baf158e8da6fc4813 (plain)
1
2
3
4
5
6
7
8
#include <vector>

typedef std::vector<long> vector_long;
int main(int argc, char **argv) {
  std::vector<int> a = {3, 1, 2};
  vector_long b = {3, 1, 2};
  return 0; // Set break point at this line.
}