aboutsummaryrefslogtreecommitdiffhomepage
path: root/test-suite/bugs/closed/5233.v
diff options
context:
space:
mode:
authorGravatar Hugo Herbelin <Hugo.Herbelin@inria.fr>2017-05-20 18:28:10 +0200
committerGravatar Hugo Herbelin <Hugo.Herbelin@inria.fr>2017-05-31 00:44:26 +0200
commit09e15424aab082fd4b18a06e8894227beddeb487 (patch)
treef64728dd4a39c0a6770e6c0cd217332473206237 /test-suite/bugs/closed/5233.v
parent5c30cf26474aa4f52d26005c797130a0d6d21ab5 (diff)
Fixing #5233 (missing implicit arguments for recursive records).
Was failing e.g. with Inductive foo {A : Type} : Type := { Foo : foo }. Note: the test-suite was using the bug in coindprim.v.
Diffstat (limited to 'test-suite/bugs/closed/5233.v')
-rw-r--r--test-suite/bugs/closed/5233.v2
1 files changed, 2 insertions, 0 deletions
diff --git a/test-suite/bugs/closed/5233.v b/test-suite/bugs/closed/5233.v
new file mode 100644
index 000000000..06286c740
--- /dev/null
+++ b/test-suite/bugs/closed/5233.v
@@ -0,0 +1,2 @@
+(* Implicit arguments on type were missing for recursive records *)
+Inductive foo {A : Type} : Type := { Foo : foo }.