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? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
In the mdb query interface (which I see as a poor man's REPL for Mercury), import of a non-existent module incorrectly succeeds.
mdb
query
The "cannot find..." error does appear later (when the user issues a goal query, which I guess triggers compilation) — but that is too late.
mdb> query ?- [asdfqwer]. :- import_module asdfqwer. ?- 1 = 1. mercury_compile: cannot find `asdfqwer.int' in directories ., /usr/local/mercury-14.01.1/lib/mercury/ints <stdin>:026: Inferred :- pred query. <stdin>:026: Inferred :- mode query is det. Compilation error(s) occurred.
The text was updated successfully, but these errors were encountered:
No branches or pull requests
In the
mdb
query
interface (which I see as a poor man's REPL for Mercury), import of a non-existent module incorrectly succeeds.The "cannot find..." error does appear later (when the user issues a goal query, which I guess triggers compilation) — but that is too late.
The text was updated successfully, but these errors were encountered: