aboutsummaryrefslogtreecommitdiff
path: root/test-suite
diff options
context:
space:
mode:
authorGaëtan Gilbert2019-07-19 12:59:13 +0200
committerGaëtan Gilbert2019-07-19 12:59:13 +0200
commit2727af30f9338830c2b225587f87ed8a4e80f7e3 (patch)
tree673e19d4db0f004d333db4adaf0fbea05e76a476 /test-suite
parentfc2cb2c7d483302b908abf821d63e82f28a57570 (diff)
Fix #10533: uncaught Invalid_argument Array.fold_left2 in rewrite
Diffstat (limited to 'test-suite')
-rw-r--r--test-suite/bugs/closed/bug_10533.v8
1 files changed, 8 insertions, 0 deletions
diff --git a/test-suite/bugs/closed/bug_10533.v b/test-suite/bugs/closed/bug_10533.v
new file mode 100644
index 0000000000..e72957bdee
--- /dev/null
+++ b/test-suite/bugs/closed/bug_10533.v
@@ -0,0 +1,8 @@
+
+Require Import Eqdep Setoid.
+Goal forall (t : unit) (pf : tt = t),
+ if (match pf with eq_refl => false end) then True else False.
+Proof.
+ intros.
+ try setoid_rewrite <-Eqdep.Eq_rect_eq.eq_rect_eq.
+Abort.