diff options
| author | Maxime Dénès | 2017-04-03 23:41:01 +0200 |
|---|---|---|
| committer | Maxime Dénès | 2017-04-03 23:41:59 +0200 |
| commit | ea10a2da9ac11ea57e9eb80d0d6baf9321886da4 (patch) | |
| tree | 47d7ee39d48d1f3b2dc5974c579d69dc5708fae6 /test-suite/success | |
| parent | a92d1eac8b89cbf67dc69582c87353cabca7d48f (diff) | |
| parent | 32bf31fda75918bf2910301dffa7b3137c81b236 (diff) | |
Merge branch 'v8.6' into trunk
Diffstat (limited to 'test-suite/success')
| -rw-r--r-- | test-suite/success/univnames.v | 13 |
1 files changed, 12 insertions, 1 deletions
diff --git a/test-suite/success/univnames.v b/test-suite/success/univnames.v index 048b53d26c..fe3b8c1d7c 100644 --- a/test-suite/success/univnames.v +++ b/test-suite/success/univnames.v @@ -21,6 +21,17 @@ Inductive bla@{l k} : Type@{k} := blaI : Type@{l} -> bla. Inductive blacopy@{k l} : Type@{k} := blacopyI : Type@{l} -> blacopy. +Class Wrap A := wrap : A. + +Fail Instance bad@{} : Wrap Type := Type. + +Instance bad@{} : Wrap Type. +Fail Proof Type. +Abort. + +Instance bar@{u} : Wrap@{u} Set. Proof nat. + + Monomorphic Universe g. -Inductive blacopy'@{l} : Type@{g} := blacopy'I : Type@{l} -> blacopy'.
\ No newline at end of file +Inductive blacopy'@{l} : Type@{g} := blacopy'I : Type@{l} -> blacopy'. |
