aboutsummaryrefslogblamecommitdiffstats
path: root/test/libsolidity/syntaxTests/specialFunctions/types_without_encoding_problems.sol
blob: d890e35f3006e63b288e1e533eac4cff7ef5d227 (plain) (tree)
1
2
3
4
5
6
7
8
9



                              
                                                                   



          
contract C {
    uint[3] sarr;
    function f() view public {
        uint[3] memory arr;
        bytes32 h = keccak256(abi.encodePacked(this.f, arr, sarr));
        h;
    }
}
// ----