aboutsummaryrefslogtreecommitdiff
path: root/test-suite
diff options
context:
space:
mode:
authorSimonBoulier2019-06-06 11:06:03 +0200
committerSimonBoulier2019-08-16 11:43:51 +0200
commit3ae2b2383dc20a8c128acc4a090a41a5a236034b (patch)
tree7359dde5348466769e4ac983ed018e48ec061a8e /test-suite
parent24701948804ecdc7c2518773fd66308913441195 (diff)
Fix Print Assumptions: Inductive types can have unsafe fixpoints or
type-in-type universes
Diffstat (limited to 'test-suite')
-rw-r--r--test-suite/success/typing_flags.v5
1 files changed, 5 insertions, 0 deletions
diff --git a/test-suite/success/typing_flags.v b/test-suite/success/typing_flags.v
index c15701e000..bd20d9c804 100644
--- a/test-suite/success/typing_flags.v
+++ b/test-suite/success/typing_flags.v
@@ -36,3 +36,8 @@ Inductive Cor :=
Set Positivity Checking.
Print Assumptions Cor.
+
+Inductive Box :=
+| box : forall n, f n = n -> g 2 -> Box.
+
+Print Assumptions Box.