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

23 lines
453 B
Solidity

abstract contract D
{
function g(uint x) public virtual;
}
contract C
{
uint x;
function f(uint y, D d) public {
require(x == y);
assert(x == y);
d.g(y);
// Storage knowledge is cleared after an external call.
assert(x == y);
}
}
// ====
// SMTEngine: all
// SMTIgnoreInv: yes
// SMTIgnoreOS: macos
// ----
// Info 1391: CHC: 2 verification condition(s) proved safe! Enable the model checker option "show proved safe" to see all of them.