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

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