aboutsummaryrefslogtreecommitdiff
path: root/doc
diff options
context:
space:
mode:
authorMaxime Dénès2019-09-04 15:24:32 +0200
committerMaxime Dénès2019-09-04 15:24:32 +0200
commitcb8a23e805715f16173687d1e892711a9bb135ba (patch)
tree3c625cf9fa8ee6722d0467e06d805dac45608809 /doc
parent6a6a2575c10d05cd0151a83c133825d43bd3cb28 (diff)
parent6a90e74a59d7848ef1b026533ee600511a1c41ff (diff)
Merge PR #10577: Fix #7348: extraction of dependent record projections
Reviewed-by: Zimmi48 Reviewed-by: maximedenes
Diffstat (limited to 'doc')
-rw-r--r--doc/changelog/08-tools/10577-extraction-dependent-projections.rst9
1 files changed, 9 insertions, 0 deletions
diff --git a/doc/changelog/08-tools/10577-extraction-dependent-projections.rst b/doc/changelog/08-tools/10577-extraction-dependent-projections.rst
new file mode 100644
index 0000000000..4d52355542
--- /dev/null
+++ b/doc/changelog/08-tools/10577-extraction-dependent-projections.rst
@@ -0,0 +1,9 @@
+- Fix a printing bug of OCaml extraction on dependent record projections, which
+ produced improper `assert false`. This change makes the OCaml extractor
+ internally inline record projections by default; thus the monolithic OCaml
+ extraction (:cmd:`Extraction` and :cmd:`Recursive Extraction`) does not
+ produce record projection constants anymore except for record projections
+ explicitly instructed to extract, and records declared in opaque modules
+ (`#10577 <https://github.com/coq/coq/pull/10577>`_,
+ fixes `#7348 <https://github.com/coq/coq/issues/7348>`_,
+ by Kazuhiko Sakaguchi).