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
t_sup
t_inf
bitstr
The current version of Fialyzer does not implement the following parts: https://github.com/erlang/otp/blob/OTP-22.0.7/lib/hipe/cerl/erl_types.erl#L2567-L2568 https://github.com/erlang/otp/blob/OTP-22.0.7/lib/hipe/cerl/erl_types.erl#L2876-L2889
Therefore, for example, the current implementation rejects the following, which is accepted by Dialyzer:
-module(binary_test). -export([main/1]). main(X) -> _ = binary_to_integer(X), %% binary -> integer. _ = bit_size(X). %% bitstring -> integer >= 0.
The text was updated successfully, but these errors were encountered:
yuezato
No branches or pull requests
The current version of Fialyzer does not implement the following parts:
https://github.com/erlang/otp/blob/OTP-22.0.7/lib/hipe/cerl/erl_types.erl#L2567-L2568
https://github.com/erlang/otp/blob/OTP-22.0.7/lib/hipe/cerl/erl_types.erl#L2876-L2889
Therefore, for example, the current implementation rejects the following, which is accepted by Dialyzer:
The text was updated successfully, but these errors were encountered: