From ed64c01cbecfc94b37c1139e7e2824c42890c0ef Mon Sep 17 00:00:00 2001 From: serr Date: Tue, 20 May 2025 18:27:32 +0300 Subject: [PATCH] =?UTF-8?q?multiple=20declaration=20=D0=B4=D0=BB=D1=8F=20?= =?UTF-8?q?=D0=BF=D0=B5=D1=80=D0=B5=D0=BC=D0=B5=D0=BD=D0=BD=D1=8B=D1=85=20?= =?UTF-8?q?=D0=BF=D0=BE=D0=BB=D1=8C=D0=B7=D0=BE=D0=B2=D0=B0=D1=82=D0=B5?= =?UTF-8?q?=D0=BB=D1=8C=D1=81=D0=BA=D0=B8=D1=85=20=D1=82=D0=B8=D0=BF=D0=BE?= =?UTF-8?q?=D0=B2=20=D0=B4=D0=BE=D0=B1=D0=B0=D0=B2=D0=B8=D0=BB?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- analyzers/test/test.y | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/analyzers/test/test.y b/analyzers/test/test.y index 0f37f74..82884f1 100644 --- a/analyzers/test/test.y +++ b/analyzers/test/test.y @@ -399,7 +399,7 @@ var_multiple_short_declaration: identifiers_list SHORT_DECLARATION math_expr_or_literals_list var_declaration: - | VAR IDENTIFIER type + VAR IDENTIFIER type | VAR IDENTIFIER any_identifier | VAR identifiers_list any_identifier { { printf("\033[1;33mVAR DECL without init value\n\033[0m"); } } | VAR identifiers_list type { { printf("\033[1;33mVAR DECL without init value\n\033[0m"); } }