aboutsummaryrefslogtreecommitdiffhomepage
path: root/test-suite/bugs
diff options
context:
space:
mode:
authorGravatar Gaëtan Gilbert <gaetan.gilbert@skyskimmer.net>2018-04-06 16:30:06 +0200
committerGravatar Gaëtan Gilbert <gaetan.gilbert@skyskimmer.net>2018-04-06 16:30:06 +0200
commit036a8660f11178a2523982d109ba11b99c062a3d (patch)
treeb81de584d2c54fca18859c74922798e7e433cb17 /test-suite/bugs
parent600c258adee5d6e91e855ff73c58b922d48f444e (diff)
Fix #5539: algebraic universe produced by cases.
Diffstat (limited to 'test-suite/bugs')
-rw-r--r--test-suite/bugs/closed/5539.v15
1 files changed, 15 insertions, 0 deletions
diff --git a/test-suite/bugs/closed/5539.v b/test-suite/bugs/closed/5539.v
new file mode 100644
index 000000000..48e5568e9
--- /dev/null
+++ b/test-suite/bugs/closed/5539.v
@@ -0,0 +1,15 @@
+Set Universe Polymorphism.
+
+Inductive D : nat -> Type :=
+| DO : D O
+| DS n : D n -> D (S n).
+
+Fixpoint follow (n : nat) : D n -> Prop :=
+ match n with
+ | O => fun d => let 'DO := d in True
+ | S n' => fun d => (let 'DS _ d' := d in fun f => f d') (follow n')
+ end.
+
+Definition step (n : nat) (d : D n) (H : follow n d) :
+ follow (S n) (DS n d)
+ := H.