summaryrefslogtreecommitdiff
path: root/test-suite/bugs/opened/3370.v
diff options
context:
space:
mode:
Diffstat (limited to 'test-suite/bugs/opened/3370.v')
-rw-r--r--test-suite/bugs/opened/3370.v12
1 files changed, 12 insertions, 0 deletions
diff --git a/test-suite/bugs/opened/3370.v b/test-suite/bugs/opened/3370.v
new file mode 100644
index 00000000..4964bf96
--- /dev/null
+++ b/test-suite/bugs/opened/3370.v
@@ -0,0 +1,12 @@
+Require Import String.
+
+Local Ltac set_strings :=
+ let s := match goal with |- context[String ?s1 ?s2] => constr:(String s1 s2) end in
+ let H := fresh s in
+ set (H := s).
+
+Local Open Scope string_scope.
+
+Goal "asdf" = "bds".
+Fail set_strings. (* Error: Ltac variable s is bound to "asdf" which cannot be coerced to
+a fresh identifier. *)