You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
@@ -47,3 +47,8 @@ void q(Ts......) {} // expected-warning {{declaration of a variadic function wit
47
47
template<classT>
48
48
voidr(T...) {} // expected-warning {{declaration of a variadic function without a comma before '...' is deprecated}}
49
49
50
+
auto type_specifier = (void (*)(int...)) nullptr; // expected-warning {{declaration of a variadic function without a comma before '...' is deprecated}}
51
+
52
+
auto lambda = [](int...) {}; // expected-warning {{declaration of a variadic function without a comma before '...' is deprecated}}
53
+
54
+
auto block = ^(int...){}; // expected-warning {{declaration of a variadic function without a comma before '...' is deprecated}}
0 commit comments