aboutsummaryrefslogtreecommitdiffstats
path: root/test/libsolidity/syntaxTests/array/bytes_pop.sol
blob: cd5aa0eb6f6392b49c68886241543a271ef7ce2e (plain) (blame)
1
2
3
4
5
6
7
contract C {
    bytes data;
    function test() public {
      data.pop();
    }
}
// ----