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

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