aboutsummaryrefslogtreecommitdiffstats
path: root/test/libsolidity/syntaxTests/array/array_pop.sol
blob: 3804f911f4ca1890f29fd751b1f6c473ac8b6190 (plain) (blame)
1
2
3
4
5
6
7
contract C {
    uint[] data;
    function test() public {
      data.pop();
    }
}
// ----