aboutsummaryrefslogtreecommitdiffhomepage
path: root/test-suite
diff options
context:
space:
mode:
authorGravatar Hugo Herbelin <Hugo.Herbelin@inria.fr>2014-09-05 18:22:15 +0200
committerGravatar Hugo Herbelin <Hugo.Herbelin@inria.fr>2014-09-07 13:48:47 +0200
commitc6753a3223389050af4059d0222e4efd9bda3b0f (patch)
tree7d4411192c2c1bc51ba3480cd48493b61a548f33 /test-suite
parent609ca52bbdde6201056b6226c43e7ffb94d80aa8 (diff)
Regression test for bug #2883.
Diffstat (limited to 'test-suite')
-rw-r--r--test-suite/bugs/closed/2883.v34
1 files changed, 34 insertions, 0 deletions
diff --git a/test-suite/bugs/closed/2883.v b/test-suite/bugs/closed/2883.v
new file mode 100644
index 000000000..5a5d90a40
--- /dev/null
+++ b/test-suite/bugs/closed/2883.v
@@ -0,0 +1,34 @@
+Require Import List.
+Require Import Coq.Program.Equality.
+
+Inductive star {genv state : Type}
+ (step : genv -> state -> state -> Prop)
+ (ge : genv) : state -> state -> Prop :=
+ | star_refl : forall s : state, star step ge s s
+ | star_step :
+ forall (s1 : state) (s2 : state)
+ (s3 : state),
+ step ge s1 s2 ->
+ star step ge s2 s3 ->
+ star step ge s1 s3.
+
+Parameter genv expr env mem : Type.
+Definition genv' := genv.
+Inductive state : Type :=
+ | State : expr -> env -> mem -> state.
+Parameter step : genv' -> state -> state -> Prop.
+
+Section Test.
+
+Variable ge : genv'.
+
+Lemma compat_eval_steps:
+ forall a b e a' b',
+ star step ge (State a e b) (State a' e b') ->
+ True.
+Proof.
+ intros. dependent induction H.
+ trivial.
+ eapply IHstar; eauto.
+ replace s2 with (State a' e b') by admit. eauto.
+Qed. (* Oups *)