summaryrefslogtreecommitdiff
path: root/test-suite/success/TacticNotation2.v
blob: cb341b8e100d71d6420b8d38a0fa2040e8ee7174 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
Tactic Notation "complete" tactic(tac) := tac; fail.

Ltac f0 := complete (intuition idtac).
(** FIXME: This is badly printed because of bug #3079.
    At least we check that it does not fail anomalously. *)
Print Ltac f0.

Ltac f1 := complete f1.
Print Ltac f1.

Ltac f2 := complete intuition.
Print Ltac f2.