aboutsummaryrefslogtreecommitdiff
path: root/test-suite
diff options
context:
space:
mode:
authorPierre-Marie Pédrot2020-11-20 12:38:20 +0100
committerPierre-Marie Pédrot2020-11-20 12:38:20 +0100
commit1fd6af1ae6d4a46547cdd2bf812ef46e0727138f (patch)
tree9af74796a68a69209df61d3261be7e1bc2834e81 /test-suite
parenta8a0285c153cab810dedba6bae5a2a6a6d2c4333 (diff)
parentf09eef2a1c55a1e9a617b7bad0759b4760a8978a (diff)
Merge PR #13305: Only lower inductives to Prop if the type is syntactically an arity.
Reviewed-by: ppedrot
Diffstat (limited to 'test-suite')
-rw-r--r--test-suite/bugs/closed/bug_13300.v7
1 files changed, 7 insertions, 0 deletions
diff --git a/test-suite/bugs/closed/bug_13300.v b/test-suite/bugs/closed/bug_13300.v
new file mode 100644
index 0000000000..e4fcd6dacc
--- /dev/null
+++ b/test-suite/bugs/closed/bug_13300.v
@@ -0,0 +1,7 @@
+Polymorphic Definition type := Type.
+
+Inductive bad : type := .
+
+Fail Check bad : Prop.
+Check bad : Set.
+(* lowered as much as possible *)