We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? # for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “#”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? # to your account
A common support request for utop is that when using parts compiler-libs, the following error happens:
compiler-libs
utop # #require "compiler-libs.common";; utop # Location.report_warning;; Line 1: Error: Reference to undefined global `Location'
This is because the toplevel is expunged, and the correct fix is to use utop-full:
utop-full
utop # #require "compiler-libs.common";; utop # Location.report_warning;; - : Warnings.loc -> Warnings.t -> Location.report option = <fun>
utop itself should hint at this, for example by displaying a warning at #require time or by installing an exception handler.
utop
#require
The text was updated successfully, but these errors were encountered:
No branches or pull requests
A common support request for utop is that when using parts
compiler-libs
, the following error happens:This is because the toplevel is expunged, and the correct fix is to use
utop-full
:utop
itself should hint at this, for example by displaying a warning at#require
time or by installing an exception handler.The text was updated successfully, but these errors were encountered: