diff options
Diffstat (limited to 'test-suite')
| -rw-r--r-- | test-suite/success/cumulativity.v | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/test-suite/success/cumulativity.v b/test-suite/success/cumulativity.v index ecf9035bfe..ebf817cfc5 100644 --- a/test-suite/success/cumulativity.v +++ b/test-suite/success/cumulativity.v @@ -58,4 +58,8 @@ Section subtyping_test. Inductive TP2 := tp2 : Type@{i} -> Type@{j} -> TP2. -End subtyping_test.
\ No newline at end of file +End subtyping_test. + +Record A : Type := { a :> Type; }. + +Record B (X : A) : Type := { b : X; }.
\ No newline at end of file |
