aboutsummaryrefslogtreecommitdiff
path: root/test-suite/output/bug_13240.v
diff options
context:
space:
mode:
Diffstat (limited to 'test-suite/output/bug_13240.v')
-rw-r--r--test-suite/output/bug_13240.v10
1 files changed, 10 insertions, 0 deletions
diff --git a/test-suite/output/bug_13240.v b/test-suite/output/bug_13240.v
new file mode 100644
index 0000000000..a999450cd2
--- /dev/null
+++ b/test-suite/output/bug_13240.v
@@ -0,0 +1,10 @@
+Require Import ssreflect.
+
+Ltac t1 a b := a; last b.
+Print t1.
+
+Ltac t2 := do !idtac.
+Print t2.
+
+Ltac t3 := idtac => True.
+Print t3.