summaryrefslogtreecommitdiff
path: root/test-suite/bugs/closed/3267.v
diff options
context:
space:
mode:
Diffstat (limited to 'test-suite/bugs/closed/3267.v')
-rw-r--r--test-suite/bugs/closed/3267.v11
1 files changed, 11 insertions, 0 deletions
diff --git a/test-suite/bugs/closed/3267.v b/test-suite/bugs/closed/3267.v
index 5ce1ddf0..8175d66a 100644
--- a/test-suite/bugs/closed/3267.v
+++ b/test-suite/bugs/closed/3267.v
@@ -34,3 +34,14 @@ Module d.
debug eauto.
Defined.
End d.
+
+(* An other variant which was still failing in 8.5 beta2 *)
+
+Parameter A B : Prop.
+Axiom a:B.
+
+Hint Extern 1 => match goal with H:_ -> id _ |- _ => try (unfold id in H) end.
+Goal (B -> id A) -> A.
+intros.
+eauto using a.
+Abort.