From fa9399b90d88d356ff9010d7fc91e2f053122e54 Mon Sep 17 00:00:00 2001 From: "Tristan B. Velloza Kildaire" Date: Sun, 16 Jul 2023 19:58:40 +0200 Subject: [PATCH] Test cases - Fixed `simple_function_decls.t` to include the required (but missing) `return` statement --- source/tlang/testing/simple_function_decls.t | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/source/tlang/testing/simple_function_decls.t b/source/tlang/testing/simple_function_decls.t index 6d89bd1c..24debb96 100644 --- a/source/tlang/testing/simple_function_decls.t +++ b/source/tlang/testing/simple_function_decls.t @@ -6,9 +6,13 @@ int k = 22; int apple(int arg1, int arg2) { int h = 69; + + return 0; } int banana(int arg1) { int h = 64; + + return 0; } \ No newline at end of file