summaryrefslogtreecommitdiff
path: root/test-suite/bugs/closed/5671.v
diff options
context:
space:
mode:
Diffstat (limited to 'test-suite/bugs/closed/5671.v')
-rw-r--r--test-suite/bugs/closed/5671.v7
1 files changed, 7 insertions, 0 deletions
diff --git a/test-suite/bugs/closed/5671.v b/test-suite/bugs/closed/5671.v
new file mode 100644
index 00000000..c9a08504
--- /dev/null
+++ b/test-suite/bugs/closed/5671.v
@@ -0,0 +1,7 @@
+(* Fixing Meta-unclean specialize *)
+
+Require Import Setoid.
+Axiom a : forall x, x=0 -> True.
+Lemma lem (x y1 y2:nat) (H:x=0) (H0:eq y1 y2) : y1 = y2.
+specialize a with (1:=H). clear H x. intros _.
+setoid_rewrite H0.