aboutsummaryrefslogtreecommitdiff
path: root/test-suite
diff options
context:
space:
mode:
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.