From 7399d4b3da04e0464b0c47f6c0b3c948599f6873 Mon Sep 17 00:00:00 2001 From: Hugo Herbelin Date: Sat, 5 Apr 2014 14:05:04 +0200 Subject: Test for bug #3142, actually duplicate of #3262. --- test-suite/bugs/closed/3142.v | 9 +++++++++ 1 file changed, 9 insertions(+) create mode 100644 test-suite/bugs/closed/3142.v diff --git a/test-suite/bugs/closed/3142.v b/test-suite/bugs/closed/3142.v new file mode 100644 index 0000000000..988074e2f1 --- /dev/null +++ b/test-suite/bugs/closed/3142.v @@ -0,0 +1,9 @@ +(* Fixed together with #3262 in 48af6d1418282323b9fff0e789fed9478c064434 *) +(* April 4, 2014 (non-progress in candidates was not detected) *) + +Definition eqbool_dep (P : bool -> Prop) (h1 : P true) (b : bool) (h2 : P b) + : Prop := +(match b (* return P b -> Prop *) with + | true => fun (h : P true) => h1 = h + | false => fun (_ : P false) => False +end (* : P b -> Prop *)) h2. -- cgit v1.2.3