solidity/test/libsolidity/smtCheckerTests/functions/functions_external_1.sol
2019-12-02 21:59:00 +01:00

21 lines
342 B
Solidity

pragma experimental SMTChecker;
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);
}
}
// ----
// Warning: (257-271): Assertion violation happens here