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
This contract:
contract C { function f() public returns (uint, uint) { try this() { } catch Error(string memory) { } } }
produces:
Unknown exception during compilation: std::bad_cast
when run with solfuzzer (solc alone seems ok)
On master, using AFL fuzzing. Another discovery using https://github.com/agroce/afl-compiler-fuzzer
Save this contract in shrink.sol (or whatever filename)
shrink.sol
> solc shrink.sol Unknown exception during compilation: std::bad_cast
The text was updated successfully, but these errors were encountered:
Marenz
No branches or pull requests
Description
This contract:
produces:
when run with solfuzzer (solc alone seems ok)
On master, using AFL fuzzing. Another discovery using https://github.com/agroce/afl-compiler-fuzzer
Environment
Steps to Reproduce
Save this contract in
shrink.sol
(or whatever filename)produces:
The text was updated successfully, but these errors were encountered: