Skip to content

Commit

Permalink
add order test
Browse files Browse the repository at this point in the history
  • Loading branch information
ospencer committed Mar 11, 2023
1 parent 6265ee5 commit f555013
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions compiler/test/suites/functions.re
Original file line number Diff line number Diff line change
Expand Up @@ -255,6 +255,14 @@ truc()|},
|},
"12\n",
);
assertRun(
"labeled_args6",
{|
let nothing = (a, b) => void
nothing(b=print(1), print(2))
|},
"1\n2\n",
);

assertRun(
"default_args1",
Expand Down

0 comments on commit f555013

Please sign in to comment.