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
module M = struct exception E end let _ = match () with | () -> () | M.(exception (E | Exit)) -> ()
generates instrumentation that includes the case | M.(Exit), which then triggers
| M.(Exit)
File "test.ml", line 5, characters 2-26: 5 | | M.(exception (E | Exit)) -> ( ^^^^^^^^^^^^^^^^^^^^^^^^ Error (warning 33): unused open M.
The solution is probably to suppress warning 33 in the suppression list here:
bisect_ppx/src/ppx/instrument.ml
Lines 507 to 509 in 9bdc5da
The text was updated successfully, but these errors were encountered:
9f58b88
No branches or pull requests
generates instrumentation that includes the case
| M.(Exit)
, which then triggersThe solution is probably to suppress warning 33 in the suppression list here:
bisect_ppx/src/ppx/instrument.ml
Lines 507 to 509 in 9bdc5da
The text was updated successfully, but these errors were encountered: