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

Use (more primitive) case instead of destruct in done tactic.

parent 49b8b16d
No related branches found
No related tags found
No related merge requests found
......@@ -56,7 +56,7 @@ Ltac done :=
| contradiction
| solve [apply not_symmetry; trivial]
| split ]
| match goal with H : ¬_ |- _ => solve [destruct H; trivial] end ].
| match goal with H : ¬_ |- _ => solve [case H; trivial] end ].
Tactic Notation "by" tactic(tac) :=
tac; done.
......
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