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