Ethereum smart contract fuzzer
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
echidna/tests/solidity/values/smallValues.sol

11 lines
199 B

contract smallValues {
int256 n = 0;
function f (uint256 newn) public {
n = int256(newn);
}
function echidna_findSmall() public returns (bool) {
return ((n - 256) != 31);
}
}