solidity/test/libsolidity/smtCheckerTests/functions/functions_library_1.sol
2023-03-09 14:59:32 +01:00

21 lines
401 B
Solidity

library L
{
function add(uint x, uint y) internal pure returns (uint) {
require(x < 1000);
require(y < 1000);
return x + y;
}
}
contract C
{
function f(uint x) public pure {
uint y = L.add(x, 999);
assert(y < 10000);
}
}
// ====
// SMTEngine: all
// ----
// Info 1391: CHC: 2 verification condition(s) proved safe! Enable the model checker option "show proved safe" to see all of them.