summaryrefslogtreecommitdiff
path: root/test-suite/output/ltac_extra_args.v
diff options
context:
space:
mode:
Diffstat (limited to 'test-suite/output/ltac_extra_args.v')
-rw-r--r--test-suite/output/ltac_extra_args.v10
1 files changed, 10 insertions, 0 deletions
diff --git a/test-suite/output/ltac_extra_args.v b/test-suite/output/ltac_extra_args.v
new file mode 100644
index 00000000..4caf619f
--- /dev/null
+++ b/test-suite/output/ltac_extra_args.v
@@ -0,0 +1,10 @@
+Ltac foo := idtac.
+Ltac bar H := idtac.
+
+Goal True.
+Proof.
+ Fail foo H.
+ Fail foo H H'.
+ Fail bar H H'.
+ Fail bar H H' H''.
+Abort.