summaryrefslogtreecommitdiffstats
path: root/Tests/CompileFeatures/cxx_alias_templates.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'Tests/CompileFeatures/cxx_alias_templates.cpp')
-rw-r--r--Tests/CompileFeatures/cxx_alias_templates.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/Tests/CompileFeatures/cxx_alias_templates.cpp b/Tests/CompileFeatures/cxx_alias_templates.cpp
index a47e27d..0859692 100644
--- a/Tests/CompileFeatures/cxx_alias_templates.cpp
+++ b/Tests/CompileFeatures/cxx_alias_templates.cpp
@@ -7,5 +7,5 @@ struct A
};
using B = A<int, char>;
-template<typename T>
+template <typename T>
using C = A<int, T>;