aboutsummaryrefslogtreecommitdiff
path: root/doc
diff options
context:
space:
mode:
authorEmilio Jesus Gallego Arias2019-11-21 18:57:13 +0100
committerEmilio Jesus Gallego Arias2019-11-21 18:57:13 +0100
commit98165082581fc0950639cfee21e140cac8e916ad (patch)
tree3305dc998bd5465b20b7380bc0f4f6f1e0ac25ad /doc
parentaf98bb689a05ccf420da53ee7befacb7c2202942 (diff)
parent7255c262c6cc9b3153acf9d2f694196f4e9c10e6 (diff)
Merge PR #11132: Fixing bugs in the computation of implicit arguments for `Fixpoint` with a let binder
Reviewed-by: Zimmi48 Reviewed-by: ejgallego
Diffstat (limited to 'doc')
-rw-r--r--doc/changelog/02-specification-language/11132-master+fix-implicit-let-fixpoint-bug3282.rst13
1 files changed, 13 insertions, 0 deletions
diff --git a/doc/changelog/02-specification-language/11132-master+fix-implicit-let-fixpoint-bug3282.rst b/doc/changelog/02-specification-language/11132-master+fix-implicit-let-fixpoint-bug3282.rst
new file mode 100644
index 0000000000..f8298cdbdd
--- /dev/null
+++ b/doc/changelog/02-specification-language/11132-master+fix-implicit-let-fixpoint-bug3282.rst
@@ -0,0 +1,13 @@
+- Fixed bugs sometimes preventing to define valid (co)fixpoints with implicit arguments
+ in the presence of local definitions, see `#3282 <https://github.com/coq/coq/issues/3282>`_
+ (`#11132 <https://github.com/coq/coq/pull/11132>`_, by Hugo Herbelin).
+
+ .. example::
+
+ The following features an implicit argument after a local
+ definition. It was wrongly rejected.
+
+ .. coqtop:: in
+
+ Definition f := fix f (o := true) {n : nat} m {struct m} :=
+ match m with 0 => 0 | S m' => f (n:=n+1) m' end.