solidity/test/libsolidity/syntaxTests/array/array_pop.sol

8 lines
93 B
Solidity
Raw Normal View History

contract C {
uint[] data;
function test() public {
data.pop();
}
}
// ----