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
The explicit-type rule is not checked when casting a variable.
Option: explicit
explicit
function test() external { uint256 a = uint(10); }
Expected: error because of uint(10)
uint(10)
Observed: no errors
The text was updated successfully, but these errors were encountered:
@vladyan18 that's a good catch I'll try to fix it in next release
Feel free to submit a PR to correct this Much appreciated
Thanks for posting!
Sorry, something went wrong.
Already done :)
#493
ohh I seee GREAT WORK!! I will review it asap
THANKS A LOT!
Successfully merging a pull request may close this issue.
The explicit-type rule is not checked when casting a variable.
Example
Option:
explicit
Expected: error because of
uint(10)
Observed: no errors
The text was updated successfully, but these errors were encountered: