aboutsummaryrefslogtreecommitdiffhomepage
path: root/test-suite/success
diff options
context:
space:
mode:
authorGravatar Pierre-Marie Pédrot <pierre-marie.pedrot@inria.fr>2016-04-08 00:19:49 +0200
committerGravatar Pierre-Marie Pédrot <pierre-marie.pedrot@inria.fr>2016-04-08 00:51:55 +0200
commit1f6a31d138bcfcf341f28772de7c5e08906167c5 (patch)
treea3366f792ee478b5cfe349e1640611149e60b721 /test-suite/success
parent9d50e5426cc816789650b7f541793a9ba773d14c (diff)
Fixing printing of Tactic Notations with tactic arguments.
Diffstat (limited to 'test-suite/success')
-rw-r--r--test-suite/success/TacticNotation2.v12
1 files changed, 12 insertions, 0 deletions
diff --git a/test-suite/success/TacticNotation2.v b/test-suite/success/TacticNotation2.v
new file mode 100644
index 000000000..cb341b8e1
--- /dev/null
+++ b/test-suite/success/TacticNotation2.v
@@ -0,0 +1,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.