1 2 3 4 5 6 7
// objective: test template parameters for a type alias // check: 072__using_8cpp.xml /** \file */ /** @brief A vector */ template<class T> using Vec = std::vector<T>;