What is going on here:
https://github.com/coq/coq/pull/15000/checks?check_run_id=3838330986
Looks like an OCaml bug?
https://github.com/ocaml/ocaml/issues/10027
Coq: the only in-depth user of the worst parts of the OCaml type system out there
So, we have exception definitions that use inline records? Was someone really concerned about the cost of OCaml exceptions?
inline records aren't about cost, they're about being able to give names to the fields without having to do some
type contents_of_foo = ...
... of contents_of_foo
boilerplate
Bah, it's not useful for exceptions since most of the time there is only one single client destructing the record, i.e. the printer
Last updated: Oct 08 2024 at 15:02 UTC