Skip to content

Commit

Permalink
Actually display the error messages from pipeline failures
Browse files Browse the repository at this point in the history
  • Loading branch information
JasonGross authored and jadephilipoom committed Apr 18, 2018
1 parent c574d7e commit f2ef2c8
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion src/Experiments/SimplyTypedArithmetic.v
Original file line number Diff line number Diff line change
Expand Up @@ -7072,7 +7072,11 @@ Ltac vm_compute_lhs_reflexivity :=
lazymatch goal with
| [ |- ?LHS = ?RHS ]
=> let x := (eval vm_compute in LHS) in
unify RHS x;
(* we cannot use the unify tactic, which just gives "not
unifiable" as the error message, because we want to see the
terms that were not unifable. See also
COQBUG(https://github.com/coq/coq/issues/7291) *)
let _unify := constr:(ltac:(reflexivity) : RHS = x) in
vm_cast_no_check (eq_refl x)
end.

Expand Down

0 comments on commit f2ef2c8

Please sign in to comment.