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

28 lines
865 B
Solidity
Raw Normal View History

pragma experimental SMTChecker;
contract C
{
mapping (uint => uint) singleMap;
mapping (uint => uint)[2] severalMaps;
mapping (uint => uint8)[2] severalMaps8;
mapping (uint => uint)[2][2] severalMaps3d;
function f(mapping (uint => uint) storage map) internal {
2020-02-12 02:21:42 +00:00
severalMaps[0][0] = 42;
severalMaps8[0][0] = 42;
severalMaps3d[0][0][0] = 42;
map[0] = 2;
// Should fail since map == severalMaps[0] is possible.
assert(severalMaps[0][0] == 42);
// Should not fail since knowledge is erased only for mapping (uint => uint).
assert(severalMaps8[0][0] == 42);
// Should fail since map == severalMaps3d[0][0] is possible.
assert(severalMaps3d[0][0][0] == 42);
}
2020-02-12 02:21:42 +00:00
function g(uint x) public {
f(severalMaps[x]);
}
}
// ----
2020-07-13 18:48:00 +00:00
// Warning 6328: (425-456): Assertion violation happens here
// Warning 6328: (639-675): Assertion violation happens here