Skip to content

Commit

Permalink
Fix some errors encountered in coq-dev
Browse files Browse the repository at this point in the history
  • Loading branch information
jwiegley committed Mar 29, 2022
1 parent bdb88a3 commit 4950096
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 6 deletions.
3 changes: 1 addition & 2 deletions src/Control/Monad/Indexed.v
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
Require Import Hask.Ltac.
Require Import Hask.Prelude.
Require Import FunctionalExtensionality.

Generalizable All Variables.
Set Primitive Projections.
Expand Down Expand Up @@ -126,8 +127,6 @@ Ltac rewrite_iapp_homomorphisms :=

Section IApplicatives.

Require Import FunctionalExtensionality.

Variable F : Type -> Type -> Type -> Type.
Context `{IApplicative F}.

Expand Down
8 changes: 4 additions & 4 deletions src/Haskell.v
Original file line number Diff line number Diff line change
Expand Up @@ -63,10 +63,10 @@ Extract Inlined Constant projT1 => "Prelude.fst".
Extract Inlined Constant snd => "Prelude.snd".
(* Extract Inlined Constant subn => "(Prelude.-)". *)

Extraction Implicit eq_rect [ x y ].
Extraction Implicit eq_rect_r [ x y ].
Extraction Implicit eq_rec [ x y ].
Extraction Implicit eq_rec_r [ x y ].
(* Extraction Implicit eq_rect [ x y ]. *)
(* Extraction Implicit eq_rect_r [ x y ]. *)
(* Extraction Implicit eq_rec [ x y ]. *)
(* Extraction Implicit eq_rec_r [ x y ]. *)

Extract Inlined Constant eq_rect => "".
Extract Inlined Constant eq_rect_r => "".
Expand Down

0 comments on commit 4950096

Please sign in to comment.