From 88f8c20e3f55e8548d1f33b3407e68fb7dfb8317 Mon Sep 17 00:00:00 2001 From: ppedrot Date: Thu, 1 Aug 2013 17:40:05 +0000 Subject: Added a test for bug #3088. git-svn-id: svn+ssh://scm.gforge.inria.fr/svn/coq/trunk@16650 85f007b7-540e-0410-9357-904b9bb8a0f7 --- test-suite/bugs/closed/shouldsucceed/3088.v | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 test-suite/bugs/closed/shouldsucceed/3088.v diff --git a/test-suite/bugs/closed/shouldsucceed/3088.v b/test-suite/bugs/closed/shouldsucceed/3088.v new file mode 100644 index 0000000000..3c362510e3 --- /dev/null +++ b/test-suite/bugs/closed/shouldsucceed/3088.v @@ -0,0 +1,12 @@ +Inductive R {A} : A -> A -> Type := c : forall x y, R x y. + +Goal forall A (x y : A) P (e : R x y) (f : forall x y, P x y (c x y)), + let g := match e in R x y return P x y e with c x y => f x y end in + True. +Proof. +intros A x y P e f g. +let t := eval red in g in +match t with + (match ?E as e in R x y return @?P x y e with c X Y => @?f X Y end) => idtac P f +end. +Abort. -- cgit v1.2.3