(* Test printing of Tactic Notation *) Tactic Notation "a" constr(x) := apply x. Tactic Notation "e" constr(x) := exact x. Ltac f H := split; [a H|e H]. Print Ltac f. (* Test printing of match context *) (* Used to fail after translator removal (see bug #1070) *) Ltac g := match goal with |- context [if ?X then _ else _ ] => case X end. Print Ltac g.