summaryrefslogtreecommitdiffstats
path: root/testing/072_using.cpp
blob: ca02902db3a25b4e6b52e76a92b060b3cf5a50ba (plain)
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>;