diff options
Diffstat (limited to 'test-suite')
| -rw-r--r-- | test-suite/success/polymorphism.v | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/test-suite/success/polymorphism.v b/test-suite/success/polymorphism.v index a49b927da7..5a008f18b5 100644 --- a/test-suite/success/polymorphism.v +++ b/test-suite/success/polymorphism.v @@ -1,8 +1,12 @@ (* Some tests of sort-polymorphisme *) Section S. Variable A:Type. +(* Definition f (B:Type) := (A * B)%type. +*) Inductive I (B:Type) : Type := prod : A->B->I B. End S. +(* Check f nat nat : Set. +*) Check I nat nat : Set. |
