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

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