summaryrefslogtreecommitdiff
path: root/test-suite/bugs/closed/3265.v
diff options
context:
space:
mode:
Diffstat (limited to 'test-suite/bugs/closed/3265.v')
-rw-r--r--test-suite/bugs/closed/3265.v6
1 files changed, 6 insertions, 0 deletions
diff --git a/test-suite/bugs/closed/3265.v b/test-suite/bugs/closed/3265.v
new file mode 100644
index 00000000..269c7b74
--- /dev/null
+++ b/test-suite/bugs/closed/3265.v
@@ -0,0 +1,6 @@
+Require Import Setoid.
+Hint Extern 0 => apply reflexivity : typeclass_instances.
+Goal forall (B : Type) (P : B -> Prop), exists y : B, P y.
+ intros.
+ try reflexivity. (* Anomaly: Uncaught exception Not_found. Please report. *)
+Abort.