aboutsummaryrefslogtreecommitdiff
path: root/test-suite/success
diff options
context:
space:
mode:
authorcoqbot-app[bot]2020-10-12 13:13:15 +0000
committerGitHub2020-10-12 13:13:15 +0000
commit71a23e66a72972c7dc46ecbd333653cb7aff98b8 (patch)
treedef865ae805fb851ade092b1af9990a9e2ff75a0 /test-suite/success
parenta78b394d372f259107017cdb129be3fe53a15894 (diff)
parent9fb630a984d4211cfdcc68a8d00e94f4f1f2af24 (diff)
Merge PR #12449: Minimize Prop <= i to i := Set
Reviewed-by: mattam82 Ack-by: Janno Ack-by: gares
Diffstat (limited to 'test-suite/success')
-rw-r--r--test-suite/success/polymorphism.v7
1 files changed, 6 insertions, 1 deletions
diff --git a/test-suite/success/polymorphism.v b/test-suite/success/polymorphism.v
index 9ab8ace39e..0796b507a1 100644
--- a/test-suite/success/polymorphism.v
+++ b/test-suite/success/polymorphism.v
@@ -457,5 +457,10 @@ Module ObligationRegression.
(** Test for a regression encountered when fixing obligations for
stronger restriction of universe context. *)
Require Import CMorphisms.
- Check trans_co_eq_inv_arrow_morphism@{_ _ _ _ _ _ _ _}.
+ Check trans_co_eq_inv_arrow_morphism@{_ _ _ _ _ _ _}.
End ObligationRegression.
+
+Axiom poly@{i} : forall(A : Type@{i}) (a : A), unit.
+
+Definition nonpoly := @poly True Logic.I.
+Definition check := nonpoly@{}.