We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
How can I write solc-verify annotations for the following function to specify that the function reverts when a>=10?
a>=10
contract test { function add(uint256 a) public pure returns (uint256) { require(a < 10); } }