From 42b1d55777875d6c862d8120dea3f4eb77491e66 Mon Sep 17 00:00:00 2001 From: Vitor Py Braga <12871+vitorpy@users.noreply.github.com> Date: Thu, 21 Mar 2024 07:45:35 +0100 Subject: [PATCH] Fixing test case --- src/grammar/test/case-25.tact | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/src/grammar/test/case-25.tact b/src/grammar/test/case-25.tact index 6b47f7e30..6187b026c 100644 --- a/src/grammar/test/case-25.tact +++ b/src/grammar/test/case-25.tact @@ -12,7 +12,9 @@ fun anotherFunction( fun oneMoreFunction( a: Int, b: Int, - c: Int, ): Int { - return c + ((a >> b) || (a << (32 - b))); + return anotherFunction( + a, + b, + ); } \ No newline at end of file