solidity/test/libsolidity/smtCheckerTests/functions/getters/array_1.sol

19 lines
444 B
Solidity
Raw Normal View History

pragma experimental SMTChecker;
contract C {
uint[] public a;
2021-03-23 18:15:14 +00:00
constructor() {
a.push();
a.push();
a.push();
a.push();
}
function f() public view {
uint y = this.a(2);
assert(y == a[2]); // should hold
assert(y == 1); // should fail
}
}
// ----
2021-01-21 18:04:34 +00:00
// Warning 6328: (220-234): CHC: Assertion violation happens here.\nCounterexample:\na = [0, 0, 0, 0]\ny = 0\n\nTransaction trace:\nC.constructor()\nState: a = [0, 0, 0, 0]\nC.f()