/** @file list4704.cpp */
/** Listing 47-4. Trying to Use a Vector of Vectors */
#include <vector>

int main()
{
  std::vector<std::vector<int>> matrix;
}
