solidity/test/libsolidity/smtCheckerTests/array_members/push_2d_arg_1_unsafe.sol
2020-08-14 12:58:27 +02:00

15 lines
341 B
Solidity

pragma experimental SMTChecker;
contract C {
uint[][] a;
function f(uint[] memory x, uint y) public {
a.push(x);
a[0].push(y);
a[0].pop();
assert(a[0][a[0].length - 1] == y);
}
}
// ----
// Warning 3944: (162-177): Underflow (resulting value less than 0) happens here
// Warning 6328: (150-184): Assertion violation happens here