solidity/test/libsolidity/semanticTests/array/pop/parenthesized.sol
2022-05-19 20:23:28 +02:00

11 lines
152 B
Solidity

contract C {
int[] data;
function f() public returns (uint) {
data.push(1);
(data.pop)();
return data.length;
}
}
// ----
// f() -> 0