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
When handling internal function pointers, information about function visibility (internal, external) can be lost.
contract C { function() internal returns (uint) a; }
0.10.3
The type of a is as follows: variable.type: function() returns(uint256) However, I think it should be function() internal returns(uint256)
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Describe the issue:
When handling internal function pointers, information about function visibility (internal, external) can be lost.
Code example to reproduce the issue:
Version:
0.10.3
Relevant log output:
The text was updated successfully, but these errors were encountered: