================
@@ -12,3 +12,8 @@ template <typename... U> struct A {
foo<T>((... + static_cast<U>(1))); // expected-error {{expression contains
unexpanded parameter pack 'T'}}
}
};
+
+template <typename ... T>
+void foo(T... Params) {
+ (Params ?: 1, ...); // expected-error {{expression not permitted as operand
of fold expression}}
----------------
azmat-y wrote:
Sorry for the late response, I've been busy with college and such. Do you mean
the test itself? Or the diagnostic? g++ diagnostic shows the caret on the
conditional operator, should we do something similar here?
https://github.com/llvm/llvm-project/pull/164019
_______________________________________________
cfe-commits mailing list
[email protected]
https://lists.llvm.org/cgi-bin/mailman/listinfo/cfe-commits