aboutsummaryrefslogtreecommitdiffhomepage
path: root/test-suite/bugs/closed/3265.v
diff options
context:
space:
mode:
authorGravatar Jason Gross <jgross@mit.edu>2014-04-20 17:14:22 -0400
committerGravatar Pierre Boutillier <pierre.boutillier@ens-lyon.org>2014-04-22 12:31:34 +0200
commitae5668c90fddd66026293828114f17c0fb6d2b92 (patch)
tree0556ca689d47d2a3fc3f54d21212894c040d1734 /test-suite/bugs/closed/3265.v
parent17b84de9ec0b14006dda0e1588f04a830ac5995f (diff)
Add regression tests for 3188 and 3265
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 000000000..269c7b741
--- /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.