Skip to content

Commit

Permalink
Fix benchmarks test compilation (#2552)
Browse files Browse the repository at this point in the history
The benchmarks build has been broken for some time because one of the
juvix programs was not compiling.
  • Loading branch information
paulcadman committed Dec 10, 2023
1 parent d3e862f commit 170a4d3
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions tests/benchmark/mapfun/juvix/mapfun.juvix
Original file line number Diff line number Diff line change
@@ -1,9 +1,7 @@
-- successively map K functions to a list of N integers
module mapfun;

import Stdlib.Prelude open hiding {+};
import Stdlib.Data.Int open;
import Stdlib.Data.Int.Ord open;
import Stdlib.Prelude open;

mapfun : {A : Type} → List (A → A) → List A → List A
| nil xs := xs
Expand Down

0 comments on commit 170a4d3

Please sign in to comment.