solidity/test/libsolidity/smtCheckerTests/functions/functions_library_1_fail.sol

23 lines
523 B
Solidity

pragma experimental SMTChecker;
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 < 1000);
}
}
// ----
// Warning 8364: (228-229): Assertion checker does not yet implement type type(library L)
// Warning 6328: (245-261): CHC: Assertion violation happens here.
// Warning 8364: (228-229): Assertion checker does not yet implement type type(library L)