2021-01-06 14:55:26 +00:00
|
|
|
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
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2021-03-31 15:11:54 +00:00
|
|
|
// ====
|
|
|
|
// SMTEngine: all
|
2021-10-06 09:53:03 +00:00
|
|
|
// SMTIgnoreOS: macos
|
2021-01-06 14:55:26 +00:00
|
|
|
// ----
|
2022-01-12 13:46:30 +00:00
|
|
|
// Warning 6328: (280-300): CHC: Assertion violation happens here.\nCounterexample:\n\n\nTransaction trace:\nC.constructor()\nC.f()
|
2021-10-06 09:53:03 +00:00
|
|
|
// Info 1180: Contract invariant(s) for :C:\n!(m[0].length <= 1)\n(!(m[0][1] >= 43) && !(m[0][1] <= 41))\n
|