solidity/test/libsolidity/smtCheckerTests/try_catch/try_public_var_mapping.sol
Martin Blicha 09de54b5eb tests
2021-01-11 13:36:03 +01:00

24 lines
503 B
Solidity

pragma experimental SMTChecker;
contract C {
mapping (uint => uint[]) public m;
constructor() {
m[0].push();
m[0].push();
m[0][1] = 42;
}
function f() public view {
try this.m(0,1) returns (uint y) {
assert(y == m[0][1]); // should hold
}
catch {
assert(m[0][1] == 42); // should hold
assert(m[0][1] == 1); // should fail
}
}
}
// ----
// Warning 6328: (313-333): CHC: Assertion violation happens here.\nCounterexample:\n\n\n\n\nTransaction trace:\nC.constructor()\nC.f()