1
0
mirror of https://github.com/php/php-src.git synced 2026-03-24 00:02:20 +01:00

Remove unnecessary semicolon in match rule (#19096)

This commit is contained in:
Yudai Takada
2025-07-11 17:36:25 +09:00
committed by GitHub
parent 0dc83c2b10
commit 28cd3761a1

View File

@@ -727,7 +727,7 @@ case_separator:
match:
T_MATCH '(' expr ')' '{' match_arm_list '}'
{ $$ = zend_ast_create(ZEND_AST_MATCH, $3, $6); };
{ $$ = zend_ast_create(ZEND_AST_MATCH, $3, $6); }
;
match_arm_list: