solidity/test/libsolidity/semanticTests/array/array_push_packed_array.sol
2020-09-08 16:02:56 +02:00

19 lines
325 B
Solidity

contract c {
uint80[] x;
function test() public returns (uint80, uint80, uint80, uint80) {
x.push(1);
x.push(2);
x.push(3);
x.push(4);
x.push(5);
x.pop();
return (x[0], x[1], x[2], x[3]);
}
}
// ====
// compileViaYul: also
// ----
// test() -> 1, 2, 3, 4