summaryrefslogtreecommitdiff
path: root/test-suite/success/inds_type_sec.v
diff options
context:
space:
mode:
Diffstat (limited to 'test-suite/success/inds_type_sec.v')
-rw-r--r--test-suite/success/inds_type_sec.v3
1 files changed, 2 insertions, 1 deletions
diff --git a/test-suite/success/inds_type_sec.v b/test-suite/success/inds_type_sec.v
index a391b804..ed8b23c8 100644
--- a/test-suite/success/inds_type_sec.v
+++ b/test-suite/success/inds_type_sec.v
@@ -6,5 +6,6 @@
(* * GNU Lesser General Public License Version 2.1 *)
(************************************************************************)
Section S.
-Inductive T [U:Type] : Type := c : U -> (T U).
+Inductive T (U : Type) : Type :=
+ c : U -> T U.
End S.