Skip to content
Snippets Groups Projects
Commit d109d7bb authored by Robbert Krebbers's avatar Robbert Krebbers
Browse files

Comment on commit 44cfd7d3.

parent cdab1f86
No related branches found
No related tags found
No related merge requests found
......@@ -479,6 +479,7 @@ Tactic Notation "naive_solver" tactic(tac) :=
(**i simplification of assumptions *)
| H : False |- _ => destruct H
| H : _ _ |- _ =>
(* Work around bug https://coq.inria.fr/bugs/show_bug.cgi?id=2901 *)
let H1 := fresh in let H2 := fresh in
destruct H as [H1 H2]; try clear H
| H : _, _ |- _ =>
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment