Skip to content

Commit

Permalink
Add missing semicolon in test
Browse files Browse the repository at this point in the history
  • Loading branch information
Sirraide committed Oct 3, 2024
1 parent 48ca9d6 commit 06ac9be
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion clang/test/SemaCXX/block-unexpanded-pack.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -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'}}
Expand Down

0 comments on commit 06ac9be

Please sign in to comment.