doxygen/tests/upstream-test-suite/072_using.cpp
2019-03-06 18:39:53 +01:00

8 lines
170 B
C++

// 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>;