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

#include <vector>

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