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

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