diff options
Diffstat (limited to 'Tests/CompileFeatures/cxx_right_angle_brackets.cpp')
-rw-r--r-- | Tests/CompileFeatures/cxx_right_angle_brackets.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Tests/CompileFeatures/cxx_right_angle_brackets.cpp b/Tests/CompileFeatures/cxx_right_angle_brackets.cpp index 2713fd8..8f1b0ee 100644 --- a/Tests/CompileFeatures/cxx_right_angle_brackets.cpp +++ b/Tests/CompileFeatures/cxx_right_angle_brackets.cpp @@ -1,5 +1,5 @@ -template<typename T> +template <typename T> struct A { typedef T Result; @@ -7,6 +7,6 @@ struct A void someFunc() { - A<A<int>> object; + A<A<int> > object; (void)object; } |