From 06ac9be526b8c9046d9be147f7b6fb733096b7ff Mon Sep 17 00:00:00 2001 From: Sirraide Date: Thu, 3 Oct 2024 03:46:33 +0200 Subject: [PATCH] Add missing semicolon in test --- clang/test/SemaCXX/block-unexpanded-pack.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/clang/test/SemaCXX/block-unexpanded-pack.cpp b/clang/test/SemaCXX/block-unexpanded-pack.cpp index c1435b8e314a811..ce88db236d437cd 100644 --- a/clang/test/SemaCXX/block-unexpanded-pack.cpp +++ b/clang/test/SemaCXX/block-unexpanded-pack.cpp @@ -40,7 +40,7 @@ void gh109148() { ([] { Ts s; (^Ts); // expected-error {{expected expression}} - }, ...) + }, ...); [] { // expected-error {{unexpanded parameter pack 'Ts'}} ^ { Ts s; return not_defined; }; // expected-error {{use of undeclared identifier 'not_defined'}}