solidity/test/libsolidity/smtCheckerTests/types/mapping_1_fail.sol
2018-12-14 12:21:53 +01:00

14 lines
224 B
Solidity

pragma experimental SMTChecker;
contract C
{
mapping (uint => uint) map;
function f(uint x) public {
map[2] = x;
map[2] = 3;
assert(x != map[2]);
}
}
// ----
// Warning: (134-153): Assertion violation happens here