diff options
Diffstat (limited to 'Tests/CompileFeatures/cxx_alias_templates.cpp')
-rw-r--r-- | Tests/CompileFeatures/cxx_alias_templates.cpp | 2 |
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>; |