solidity/test/libsolidity/smtCheckerTests/array_members/push_arg_1.sol

10 lines
136 B
Solidity
Raw Normal View History

2020-05-17 18:20:17 +00:00
pragma experimental SMTChecker;
contract C {
uint[] a;
function f(uint x) public {
a.push(x);
assert(a[a.length - 1] == x);
}
}