feat(library/init/meta/interactive): add interactive done tactic

This commit is contained in:
Leonardo de Moura 2017-06-01 17:28:52 -07:00
parent 00aef04b81
commit 5446df1609

View file

@ -849,5 +849,9 @@ tactic.by_contradiction >> return ()
meta def by_contra : tactic unit :=
tactic.by_contradiction >> return ()
/-- Fail if there are unsolved goals. -/
meta def done : tactic unit :=
tactic.done
end interactive
end tactic