aboutsummaryrefslogtreecommitdiffhomepage
path: root/test-suite/coqchk
diff options
context:
space:
mode:
authorGravatar Amin Timany <amintimany@gmail.com>2017-05-05 13:33:18 +0200
committerGravatar Emilio Jesus Gallego Arias <e+git@x80.org>2017-06-16 04:51:18 +0200
commit7b323421ba558011c304a686c4cd368e1ff39440 (patch)
treed83baa256f9794e2281dd710972efaf2e7f73da6 /test-suite/coqchk
parent0c94de1f8c598c1869f71fee86bdbe4f0000a502 (diff)
Change the option to Set Inductive Cumulativity
This requires to change the status of Inductive (we have also changed CoInductive and Variant) from keyword to identifier.
Diffstat (limited to 'test-suite/coqchk')
-rw-r--r--test-suite/coqchk/cumulativity.v2
1 files changed, 1 insertions, 1 deletions
diff --git a/test-suite/coqchk/cumulativity.v b/test-suite/coqchk/cumulativity.v
index 5d245aaa5..3a8f9fa22 100644
--- a/test-suite/coqchk/cumulativity.v
+++ b/test-suite/coqchk/cumulativity.v
@@ -1,5 +1,5 @@
Set Universe Polymorphism.
-Set Ind Cumulativity.
+Set Inductive Cumulativity.
Set Printing Universes.
Inductive List (A: Type) := nil | cons : A -> List A -> List A.