aboutsummaryrefslogtreecommitdiff
path: root/test-suite
diff options
context:
space:
mode:
authorPierre-Marie Pédrot2020-09-23 11:00:50 +0200
committerPierre-Marie Pédrot2020-09-23 11:00:50 +0200
commitbb6e78ef2ca4bf0d686654fa3f66dd780f5be0ac (patch)
treece14f693e58487503870c53d7a186bf7ca66a1f6 /test-suite
parent23b0dbb3a0a71edd9ce2137e88b715c3e36e576f (diff)
parentfb144f860a0034103ad0470b8982639277baac1b (diff)
Merge PR #13028: Fixes #9716 and #13004: don't drop the qualifier of quotations at printing time
Reviewed-by: ppedrot
Diffstat (limited to 'test-suite')
-rw-r--r--test-suite/output/bug_13004.out2
-rw-r--r--test-suite/output/bug_13004.v7
-rw-r--r--test-suite/output/print_ltac.out2
3 files changed, 10 insertions, 1 deletions
diff --git a/test-suite/output/bug_13004.out b/test-suite/output/bug_13004.out
new file mode 100644
index 0000000000..2bd7d67535
--- /dev/null
+++ b/test-suite/output/bug_13004.out
@@ -0,0 +1,2 @@
+Ltac bug_13004.t := ltac2:(print (of_string "hi"))
+Ltac bug_13004.u := ident:(H)
diff --git a/test-suite/output/bug_13004.v b/test-suite/output/bug_13004.v
new file mode 100644
index 0000000000..bf4a8285d0
--- /dev/null
+++ b/test-suite/output/bug_13004.v
@@ -0,0 +1,7 @@
+Require Import Ltac2.Ltac2 Ltac2.Message.
+
+Ltac t := ltac2:(print (of_string "hi")).
+Ltac u := ident:(H).
+
+Print t.
+Print u.
diff --git a/test-suite/output/print_ltac.out b/test-suite/output/print_ltac.out
index 58931c4b82..5f88ec2e41 100644
--- a/test-suite/output/print_ltac.out
+++ b/test-suite/output/print_ltac.out
@@ -4,7 +4,7 @@ Ltac t2 := let x := string:("my tactic") in
x
Ltac t3 := idtacstr "my tactic"
Ltac t4 x := match x with
- | ?A => (A, A)
+ | ?A => constr:((A, A))
end
The command has indeed failed with message:
idnat is bound to a notation that does not denote a reference.