Test cases

- Fixed `simple_function_decls.t` to include the required (but missing) `return` statement
This commit is contained in:
Tristan B. Velloza Kildaire 2023-07-16 19:58:40 +02:00
parent b18efdc76c
commit fa9399b90d
1 changed files with 4 additions and 0 deletions

View File

@ -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;
}