diff options
Diffstat (limited to 'testing/072_using.cpp')
-rw-r--r-- | testing/072_using.cpp | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/testing/072_using.cpp b/testing/072_using.cpp new file mode 100644 index 0000000..ca02902 --- /dev/null +++ b/testing/072_using.cpp @@ -0,0 +1,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>; |