Skip to content

Commit

Permalink
Add additional test case for more than two arguments
Browse files Browse the repository at this point in the history
  • Loading branch information
vitorpy committed Mar 20, 2024
1 parent b439d71 commit 9943023
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions src/grammar/test/case-25.tact
Original file line number Diff line number Diff line change
Expand Up @@ -7,4 +7,12 @@ fun anotherFunction(
b: Int,
): Int {
return (a >> b) || (a << (32 - b));
}

fun oneMoreFunction(
a: Int,
b: Int,
c: Int,
): Int {
return c + ((a >> b) || (a << (32 - b)));
}

0 comments on commit 9943023

Please sign in to comment.