fix(library/init/meta/congr_tactic): export congr as an interactive tactic

This commit is contained in:
Gabriel Ebner 2017-08-29 16:34:59 +02:00
parent 05178ad950
commit eda1efcb5f

View file

@ -56,4 +56,11 @@ do focus1 (try assumption >> congr_core >> all_goals (try reflexivity >> try con
meta def rel_congr : tactic unit :=
do focus1 (try assumption >> rel_congr_core >> all_goals (try reflexivity))
namespace interactive
meta def congr := tactic.congr
meta def rel_congr := tactic.rel_congr
end interactive
end tactic