summaryrefslogtreecommitdiffstats
path: root/testing/067_using.cpp
blob: eb2f5cc8cc65f9d1c0dd628ed99786196a4f9f63 (plain)
1
2
3
4
5
6
7
// objective: test template parameters for a type alias
// check: 067__using_8cpp.xml

/** \file */

/** @brief A vector */
template<class T> using Vec = std::vector<T>;