aboutsummaryrefslogtreecommitdiff
path: root/test-suite/bugs
diff options
context:
space:
mode:
authorPierre-Marie Pédrot2021-02-17 13:21:24 +0100
committerPierre-Marie Pédrot2021-02-17 13:21:24 +0100
commitc55b5b8575f2f717d6d9c759996173e250dd1c75 (patch)
tree70f352f5b214c09a3557f314c25814a638ebe267 /test-suite/bugs
parentc6bc1cea49cb5a18142437325ecb6875514c22bb (diff)
parent925794c34d08752cee85362d1c2772559e89d2c9 (diff)
Merge PR #13734: Fix #13732: Implicit Type vs universes
Reviewed-by: ppedrot
Diffstat (limited to 'test-suite/bugs')
-rw-r--r--test-suite/bugs/closed/bug_13732.v16
1 files changed, 16 insertions, 0 deletions
diff --git a/test-suite/bugs/closed/bug_13732.v b/test-suite/bugs/closed/bug_13732.v
new file mode 100644
index 0000000000..24840abdf6
--- /dev/null
+++ b/test-suite/bugs/closed/bug_13732.v
@@ -0,0 +1,16 @@
+Module Sort.
+ Set Printing Universes.
+
+ Implicit Types TT : Type.
+
+ Check fun TT => nat.
+End Sort.
+
+Module Ref.
+ Set Universe Polymorphism.
+
+ Axiom tele : Type.
+
+ Implicit Types TT : tele.
+ Check fun TT => nat.
+End Ref.