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
Error:
Internal compiler error: /solidity/libsolidity/ast/Types.cpp(1982): Throw in function virtual solidity::frontend::TypeResult solidity::frontend::ArrayType::interfaceType(bool) const Dynamic exception type: boost::wrapexcept<solidity::langutil::InternalCompilerError> std::exception::what: Expected detailed error message! [solidity::util::tag_comment*] = Expected detailed error message!
Note: This bug was reported in #8280 and marked as completed in 2020. However, it still exists in the latest release (v0.8.28), hence this report.
poc.sol (fuzzer-generated):
contract test { struct S { uint8[] a; string[2] b; } S[][] s1; S[][1] s2; S[1][] s3; function f(bytes calldata data) external pure returns (uint256[2][3] memory) { return abi.decode(data, (super[3])); } function test2(S[][1] memory _a) public returns (S[][1] memory) {} function f(uint[2] memory) public pure {} }
To reproduce: solc --bin -o poc poc.sol
solc --bin -o poc poc.sol
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Description
Error:
Note: This bug was reported in #8280 and marked as completed in 2020. However, it still exists in the latest release (v0.8.28), hence this report.
Environment
Steps to Reproduce
poc.sol (fuzzer-generated):
To reproduce:
solc --bin -o poc poc.sol
The text was updated successfully, but these errors were encountered: