summaryrefslogtreecommitdiff
path: root/test-suite/bugs/closed/shouldsucceed/1711.v
diff options
context:
space:
mode:
authorGravatar Enrico Tassi <gareuselesinge@debian.org>2015-01-25 14:42:51 +0100
committerGravatar Enrico Tassi <gareuselesinge@debian.org>2015-01-25 14:42:51 +0100
commit7cfc4e5146be5666419451bdd516f1f3f264d24a (patch)
treee4197645da03dc3c7cc84e434cc31d0a0cca7056 /test-suite/bugs/closed/shouldsucceed/1711.v
parent420f78b2caeaaddc6fe484565b2d0e49c66888e5 (diff)
Imported Upstream version 8.5~beta1+dfsg
Diffstat (limited to 'test-suite/bugs/closed/shouldsucceed/1711.v')
-rw-r--r--test-suite/bugs/closed/shouldsucceed/1711.v34
1 files changed, 0 insertions, 34 deletions
diff --git a/test-suite/bugs/closed/shouldsucceed/1711.v b/test-suite/bugs/closed/shouldsucceed/1711.v
deleted file mode 100644
index e16612e3..00000000
--- a/test-suite/bugs/closed/shouldsucceed/1711.v
+++ /dev/null
@@ -1,34 +0,0 @@
-(* Test for evar map consistency - was failing at some point and was *)
-(* assumed to be solved from revision 10151 (but using a bad fix) *)
-
-Require Import List.
-Set Implicit Arguments.
-
-Inductive rose : Set := Rose : nat -> list rose -> rose.
-
-Section RoseRec.
-Variables (P: rose -> Set)(L: list rose -> Set).
-Hypothesis
- (R: forall n rs, L rs -> P (Rose n rs))
- (Lnil: L nil)
- (Lcons: forall r rs, P r -> L rs -> L (cons r rs)).
-
-Fixpoint rose_rec2 (t:rose) {struct t} : P t :=
- match t as x return P x with
- | Rose n rs =>
- R n ((fix rs_ind (l' : list rose): L l' :=
- match l' as x return L x with
- | nil => Lnil
- | cons t tl => Lcons (rose_rec2 t) (rs_ind tl)
- end)
- rs)
- end.
-End RoseRec.
-
-Lemma rose_map : rose -> rose.
-Proof. intro H; elim H using rose_rec2 with
- (L:=fun _ => list rose); (* was assumed to fail here *)
-(* (L:=fun (_:list rose) => list rose); *)
- clear H; simpl; intros.
- exact (Rose n rs). exact nil. exact (H::H0).
-Defined.