solidity/test/libsolidity/smtCheckerTests/out_of_bounds/array_4.sol

12 lines
202 B
Solidity
Raw Normal View History

2021-03-23 18:15:14 +00:00
contract C {
uint[] a;
function p() public { a.push(); }
function r(uint i) public view returns (uint) {
require(i < a.length);
return a[i]; // safe access
}
}
2021-03-31 15:11:54 +00:00
// ====
// SMTEngine: all
// ----