solidity/test/libsolidity/smtCheckerTests/array_members/push_arg_1.sol
2020-05-18 16:35:56 +02:00

10 lines
136 B
Solidity

pragma experimental SMTChecker;
contract C {
uint[] a;
function f(uint x) public {
a.push(x);
assert(a[a.length - 1] == x);
}
}