diff options
Diffstat (limited to 'test-suite/modules')
| -rw-r--r-- | test-suite/modules/subtyping.v | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/test-suite/modules/subtyping.v b/test-suite/modules/subtyping.v index fb3eae3af5..2df8e84e5c 100644 --- a/test-suite/modules/subtyping.v +++ b/test-suite/modules/subtyping.v @@ -35,3 +35,12 @@ End TT. (* Generates Top.6 <= Top.1 (+ auxiliary constraints for L_rect) *) (* Note: Top.6 <= Top.1 is generated by subtyping on A; subtyping of L follows and has not to be checked *) + + + +(* The same bug as #1302 but for Definition *) +(* Check that inferred algebraic universes in interfaces are considered *) + +Module Type U. Definition A := Type -> Type. End U. +Module M:U. Definition A := Type -> Type. End M. + |
