diff options
| author | Gaetan Gilbert | 2017-03-31 13:53:08 +0200 |
|---|---|---|
| committer | Gaetan Gilbert | 2017-04-03 18:47:58 +0200 |
| commit | 83f321c19cfd97e386d7bd5f0aca24ea46c43d2b (patch) | |
| tree | 34ad1f99dee7fe27121a09672f21af455a5bea2a /test-suite/output | |
| parent | 5bb3ea7de91829c41e22c3e44f805bee06bc917a (diff) | |
Instances should obey universe binders even when defined by tactics.
Diffstat (limited to 'test-suite/output')
| -rw-r--r-- | test-suite/output/UnivBinders.out | 6 | ||||
| -rw-r--r-- | test-suite/output/UnivBinders.v | 7 |
2 files changed, 13 insertions, 0 deletions
diff --git a/test-suite/output/UnivBinders.out b/test-suite/output/UnivBinders.out new file mode 100644 index 0000000000..128bc77673 --- /dev/null +++ b/test-suite/output/UnivBinders.out @@ -0,0 +1,6 @@ +bar@{u} = nat + : Wrap@{u} Set +(* u |= Set < u + *) + +bar is universe polymorphic diff --git a/test-suite/output/UnivBinders.v b/test-suite/output/UnivBinders.v new file mode 100644 index 0000000000..d9e89e43c6 --- /dev/null +++ b/test-suite/output/UnivBinders.v @@ -0,0 +1,7 @@ +Set Universe Polymorphism. +Set Printing Universes. + +Class Wrap A := wrap : A. + +Instance bar@{u} : Wrap@{u} Set. Proof nat. +Print bar. |
