solidity/test/libsolidity/semanticTests/array/pop/parenthesized.sol

13 lines
183 B
Solidity
Raw Normal View History

2021-02-03 20:48:45 +00:00
contract C {
int[] data;
function f() public returns (uint) {
data.push(1);
(data.pop)();
return data.length;
}
}
// ====
// compileViaYul: also
// ----
// f() -> 0