From f7eea4af7acda083a478e96fb537d3e4b2ce5acc Mon Sep 17 00:00:00 2001 From: serr Date: Sun, 18 May 2025 19:22:23 +0300 Subject: [PATCH] =?UTF-8?q?=D0=B4=D0=BE=D0=B1=D0=B0=D0=B2=D0=B8=D0=BB=20?= =?UTF-8?q?=D1=84=D1=83=D0=BD=D0=BA=D1=86=D0=B8=D0=BE=D0=BD=D0=B0=D0=BB?= =?UTF-8?q?=D1=8C=D0=BD=D1=8B=D0=B9=20=D1=82=D0=B8=D0=BF?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- analyzers/test/test.y | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/analyzers/test/test.y b/analyzers/test/test.y index a787a31..1ddcca0 100644 --- a/analyzers/test/test.y +++ b/analyzers/test/test.y @@ -271,8 +271,12 @@ string_types: STRING { } ; +func_types: + FUNC LPAREN RPAREN return_type + type: int_types { } + | func_types { } | string_types { } | float_types { } | complex_types { }