aboutsummaryrefslogtreecommitdiff
path: root/test-suite/bugs
diff options
context:
space:
mode:
authorHugo Herbelin2020-10-29 14:11:39 +0100
committerHugo Herbelin2020-10-29 15:07:52 +0100
commitc233a13620202790fa59fc720b7149a0d88f275a (patch)
tree15818db55abb73e375fe869d77d62c2f5ba9eab3 /test-suite/bugs
parent473160ebe4a835dde50d6c209ab17c7e1b84979c (diff)
Fixing interpretation of rewrite_strat argument in Ltac.
Ltac variables were not yet supported.
Diffstat (limited to 'test-suite/bugs')
-rw-r--r--test-suite/bugs/closed/bug_10972.v9
1 files changed, 9 insertions, 0 deletions
diff --git a/test-suite/bugs/closed/bug_10972.v b/test-suite/bugs/closed/bug_10972.v
new file mode 100644
index 0000000000..945c23c9a4
--- /dev/null
+++ b/test-suite/bugs/closed/bug_10972.v
@@ -0,0 +1,9 @@
+(* Check rewrite_strat is compatible with Ltac *)
+Require Import Coq.Setoids.Setoid.
+Module foo.
+ Definition Foo := True.
+ Ltac foo := rewrite_strat eval cbv [Foo].
+End foo.
+Goal foo.Foo.
+ foo.foo.
+Abort.