summaryrefslogtreecommitdiff
path: root/test-suite/bugs/2428.v
diff options
context:
space:
mode:
Diffstat (limited to 'test-suite/bugs/2428.v')
-rw-r--r--test-suite/bugs/2428.v10
1 files changed, 10 insertions, 0 deletions
diff --git a/test-suite/bugs/2428.v b/test-suite/bugs/2428.v
new file mode 100644
index 00000000..a4f587a5
--- /dev/null
+++ b/test-suite/bugs/2428.v
@@ -0,0 +1,10 @@
+Axiom P : nat -> Prop.
+
+Definition myFact := forall x, P x.
+
+Hint Extern 1 (P _) => progress (unfold myFact in *).
+
+Lemma test : (True -> myFact) -> P 3.
+Proof.
+ intros. debug eauto.
+Qed.