From 8e448c450e98a99f074599f0ffe8f1b48db2df14 Mon Sep 17 00:00:00 2001 From: Jason Gross Date: Mon, 19 Sep 2016 12:04:56 -0700 Subject: Change [Let ... in ...] to [dlet ... in ...] (#67) For "definition". This fixes #65; [Let] conflicts with the vernacular [Let] in Coq 8.4. --- src/Util/LetIn.v | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/Util/LetIn.v') diff --git a/src/Util/LetIn.v b/src/Util/LetIn.v index a15204c96..d94674f2f 100644 --- a/src/Util/LetIn.v +++ b/src/Util/LetIn.v @@ -3,7 +3,7 @@ Require Import Crypto.Util.Tactics. Require Import Crypto.Util.Notations. Definition Let_In {A P} (x : A) (f : forall a : A, P a) : P x := let y := x in f y. -Notation "'Let' x := y 'in' f" := (Let_In y (fun x => f)). +Notation "'dlet' x := y 'in' f" := (Let_In y (fun x => f)). Global Instance Proper_Let_In_nd_changebody {A P R} {Reflexive_R:@Reflexive P R} : Proper (eq ==> pointwise_relation _ R ==> R) (@Let_In A (fun _ => P)). -- cgit v1.2.3