solidity/test/libsolidity/smtCheckerTests/functions/functions_library_1.sol
2021-04-08 21:03:39 +02:00

20 lines
270 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
// ----