Blame testing/067_using.cpp

Packit Service 50c9f2
// objective: test template parameters for a type alias
Packit Service 50c9f2
// check: 067__using_8cpp.xml
Packit Service 50c9f2
Packit Service 50c9f2
/** \file */
Packit Service 50c9f2
Packit Service 50c9f2
/** @brief A vector */
Packit Service 50c9f2
template<class T> using Vec = std::vector<T>;