We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f210152 commit fe4d5f0Copy full SHA for fe4d5f0
clang/test/SemaCXX/cxx20-ctad-type-alias.cpp
@@ -74,7 +74,7 @@ struct Foo {
74
template <typename T>
75
using AF = Foo<T, 1>;
76
77
-AF b{0};
+AF b{0};
78
} // namespace test6
79
80
namespace test7 {
@@ -86,8 +86,8 @@ struct Foo {
86
template <typename U>
87
using AF1 = Foo<U>;
88
template <typename K>
89
-using AF2 = AF1<K>;
90
-AF2 b = 1;
+using AF2 = AF1<K>;
+AF2 b = 1;
91
} // namespace test7
92
93
namespace test8 {
@@ -149,7 +149,7 @@ namespace test12 {
149
template<typename X>
150
struct Foo {
151
template<typename K>
152
- struct Bar {
+ struct Bar {
153
Bar(K);
154
};
155
0 commit comments