aboutsummaryrefslogtreecommitdiffhomepage
path: root/test-suite/coqchk
diff options
context:
space:
mode:
authorGravatar Gaëtan Gilbert <gaetan.gilbert@skyskimmer.net>2018-04-22 15:26:17 +0200
committerGravatar Gaëtan Gilbert <gaetan.gilbert@skyskimmer.net>2018-05-24 13:27:33 +0200
commit82502e77d08fa3b41440f13d3b54eb1b9f1c4929 (patch)
treeeec995e8391c3ac878e0a2c1ee04bf71b885fc84 /test-suite/coqchk
parent9392d7ed7c1dfe3ad2b3d6b0f5e039353fbd6517 (diff)
Fix #7323: coqchk puts polymorphic univs of inductive in global env
Diffstat (limited to 'test-suite/coqchk')
-rw-r--r--test-suite/coqchk/univ.v8
1 files changed, 8 insertions, 0 deletions
diff --git a/test-suite/coqchk/univ.v b/test-suite/coqchk/univ.v
index 43815b61e..216338615 100644
--- a/test-suite/coqchk/univ.v
+++ b/test-suite/coqchk/univ.v
@@ -79,3 +79,11 @@ Module POLY_SUBTYP.
Module X := F M.
End POLY_SUBTYP.
+
+Module POLY_IND.
+
+ Polymorphic Inductive ind@{u v | u < v} : Prop := .
+
+ Polymorphic Definition cst@{u v | v < u} := Prop.
+
+End POLY_IND.