aboutsummaryrefslogtreecommitdiffhomepage
path: root/test-suite/bugs/closed/1780.v
diff options
context:
space:
mode:
authorGravatar barras <barras@85f007b7-540e-0410-9357-904b9bb8a0f7>2008-05-29 13:00:24 +0000
committerGravatar barras <barras@85f007b7-540e-0410-9357-904b9bb8a0f7>2008-05-29 13:00:24 +0000
commitc69a6ce2b84602ccb7e757b67dceca037c4e48ea (patch)
tree20040ad2bc8230dac4a0161d4537837f797be0a4 /test-suite/bugs/closed/1780.v
parent9780b6e2ce6787de7de251c1fb078662c433b271 (diff)
fixed bug #1780: a lift was missing (match predicate)
git-svn-id: svn+ssh://scm.gforge.inria.fr/svn/coq/trunk@11017 85f007b7-540e-0410-9357-904b9bb8a0f7
Diffstat (limited to 'test-suite/bugs/closed/1780.v')
-rw-r--r--test-suite/bugs/closed/1780.v12
1 files changed, 12 insertions, 0 deletions
diff --git a/test-suite/bugs/closed/1780.v b/test-suite/bugs/closed/1780.v
new file mode 100644
index 000000000..3929fbae2
--- /dev/null
+++ b/test-suite/bugs/closed/1780.v
@@ -0,0 +1,12 @@
+
+Definition bug := Eval vm_compute in eq_rect.
+(* bug:
+Error: Illegal application (Type Error):
+The term "eq" of type "forall A : Type, A -> A -> Prop"
+cannot be applied to the terms
+ "x" : "A"
+ "P" : "A -> Type"
+ "x0" : "A"
+The 1st term has type "A" which should be coercible to
+"Type".
+*)