aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMatthieu Sozeau2014-09-06 11:27:09 +0200
committerMatthieu Sozeau2014-09-06 11:46:04 +0200
commit5d888e0f4943877df04114a0513d70687d9b2c11 (patch)
tree5823fc10dad7d6dc852ab04c0e7e603ca5f67bb7
parent0413899668e8be15df5065abdaf1d40ad3c2c31b (diff)
Fix checker to handle projections with eta and universe polymorphism correctly,
simplifying conversion code.
-rw-r--r--checker/reduction.ml2
1 files changed, 1 insertions, 1 deletions
diff --git a/checker/reduction.ml b/checker/reduction.ml
index 0bf5ae32fe..b8677f5aaa 100644
--- a/checker/reduction.ml
+++ b/checker/reduction.ml
@@ -473,7 +473,7 @@ let fconv cv_pb env t1 t2 =
with NotConvertible ->
let open Pp in
if !Flags.debug then (
- Pp.ppnl (str " conversion failed: ");
+ Pp.ppnl (str " conversion failed on: ");
Print.print_pure_constr t1;
Pp.ppnl (str " and ");
Print.print_pure_constr t2);