aboutsummaryrefslogtreecommitdiffstats
path: root/test/libsolidity/syntaxTests/array/static_storage_array_pop.sol
blob: 0af171ad53f7247dfb86dfa36eaf96b5270d5c46 (plain) (blame)
1
2
3
4
5
6
7
8
contract C {
    uint[3] data;
    function test() public {
      data.pop();
    }
}
// ----
// TypeError: (66-74): Member "pop" not found or not visible after argument-dependent lookup in uint256[3] storage ref