solidity/test/libsolidity/smtCheckerTests/types/address_staticcall.sol

26 lines
674 B
Solidity
Raw Normal View History

2019-04-11 16:14:48 +00:00
pragma experimental SMTChecker;
contract C
{
uint x;
mapping (uint => uint) map;
function f(address a, bytes memory data) public {
x = 0;
map[0] = 0;
mapping (uint => uint) storage localMap = map;
(bool success, bytes memory ret) = a.staticcall(data);
assert(success);
assert(x == 0);
assert(map[0] == 0);
assert(localMap[0] == 0);
}
}
// ====
// EVMVersion: >spuriousDragon
// ----
// Warning: (224-240): Unused local variable.
// Warning: (266-281): Assertion violation happens here
2019-11-15 13:48:11 +00:00
// Warning: (285-299): Assertion violation happens here
// Warning: (303-322): Assertion violation happens here
// Warning: (326-350): Assertion violation happens here