solidity/test/libsolidity/smtCheckerTests/functions/this_external_getter_2.sol

13 lines
319 B
Solidity
Raw Normal View History

pragma experimental SMTChecker;
contract C {
mapping (uint => uint) public map;
function f() public view {
uint y = this.map(2);
assert(y == map[2]); // This fails as false positive because of lack of support for external getters.
}
}
// ----
// Warning 6328: (137-156): CHC: Assertion violation happens here.