aboutsummaryrefslogtreecommitdiffhomepage
path: root/test-suite/bugs/closed/1787.v
diff options
context:
space:
mode:
authorGravatar notin <notin@85f007b7-540e-0410-9357-904b9bb8a0f7>2008-02-05 10:41:38 +0000
committerGravatar notin <notin@85f007b7-540e-0410-9357-904b9bb8a0f7>2008-02-05 10:41:38 +0000
commit2fb65d97bfd9ccba49b6081810f1a72841bb3d55 (patch)
tree298f0dd91373e74a9f34edae608efb4456e5e103 /test-suite/bugs/closed/1787.v
parentfda949bd93479f8731d959133755ad08b0f9743a (diff)
Ajout d'un test pour le bug #1787
git-svn-id: svn+ssh://scm.gforge.inria.fr/svn/coq/trunk@10507 85f007b7-540e-0410-9357-904b9bb8a0f7
Diffstat (limited to 'test-suite/bugs/closed/1787.v')
-rw-r--r--test-suite/bugs/closed/1787.v11
1 files changed, 11 insertions, 0 deletions
diff --git a/test-suite/bugs/closed/1787.v b/test-suite/bugs/closed/1787.v
new file mode 100644
index 000000000..8e1024e6e
--- /dev/null
+++ b/test-suite/bugs/closed/1787.v
@@ -0,0 +1,11 @@
+Parameter P : nat -> nat -> Prop.
+Parameter Q : nat -> nat -> Prop.
+Axiom A : forall x x' x'', P x x' -> Q x'' x' -> P x x''.
+
+Goal (P 1 3) -> (Q 1 3) -> (P 1 1).
+intros H H'.
+refine ((fun H1 : P 1 _ => let H2 := (_:Q 1 _) in A _ _ _ H1 H2) _).
+clear.
+Admitted.
+
+