We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Return variables should be initialized to default value:
contract Ret { function f() public pure returns (int x) { // Returns 0 by default } function() external payable { assert(f() == 0); // Should hold } }
Currently solc-verify reports the assert to fail.