aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorppedrot2013-08-01 17:40:05 +0000
committerppedrot2013-08-01 17:40:05 +0000
commit88f8c20e3f55e8548d1f33b3407e68fb7dfb8317 (patch)
tree2615bece9ef4fdae3f7528f3d43b2188aaa11011
parent8e88b7adab785146815e2fb25faf9b11fab989e8 (diff)
Added a test for bug #3088.
git-svn-id: svn+ssh://scm.gforge.inria.fr/svn/coq/trunk@16650 85f007b7-540e-0410-9357-904b9bb8a0f7
-rw-r--r--test-suite/bugs/closed/shouldsucceed/3088.v12
1 files changed, 12 insertions, 0 deletions
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.