aboutsummaryrefslogtreecommitdiff
path: root/test-suite
diff options
context:
space:
mode:
authorHugo Herbelin2020-11-29 13:18:00 +0100
committerHugo Herbelin2020-11-29 13:18:15 +0100
commit223c86e91a4c5dceb8bdacf411f47c43d69a5dd0 (patch)
treef5149acae95edbd1baf8de064bb716f4e84cd5f2 /test-suite
parent9992bb15d4f90fc0cf3aa2854beb209bc5effac6 (diff)
Fixing printing of apply in (continuation of #12246).
Diffstat (limited to 'test-suite')
-rw-r--r--test-suite/output/Tactics.out1
-rw-r--r--test-suite/output/Tactics.v7
2 files changed, 8 insertions, 0 deletions
diff --git a/test-suite/output/Tactics.out b/test-suite/output/Tactics.out
index 3f07261ca6..01bf727ebc 100644
--- a/test-suite/output/Tactics.out
+++ b/test-suite/output/Tactics.out
@@ -9,3 +9,4 @@ H is already used.
a
The command has indeed failed with message:
This variable is used in hypothesis H.
+Ltac test a b c d e := apply a, b in c as [], d, e as ->
diff --git a/test-suite/output/Tactics.v b/test-suite/output/Tactics.v
index 8526e43a23..845bccc548 100644
--- a/test-suite/output/Tactics.v
+++ b/test-suite/output/Tactics.v
@@ -38,3 +38,10 @@ Fail intros ((n,_),H).
Abort.
End IntroWildcard.
+
+Module ApplyIn.
+
+Ltac test a b c d e := apply a, b in c as [], d, e as ->.
+Print test.
+
+End ApplyIn.