1#include <iterator>
2#include <vector>
3
4int main() {
5 std::vector<int> v{1, 2, 3};
6 auto move_begin = std::make_move_iterator(i: v.begin());
7 auto move_end = std::make_move_iterator(i: v.end());
8 return 0; // Set break point at this line.
9}
10

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