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

                              
                                                                                     



          


                                                     
                                                     
contract C {
    function f() public pure {
        bytes32 h = keccak256(abi.encodePacked(keccak256, f, this.f.gas, blockhash));
        h;
    }
}
// ----
// TypeError: (91-100): This type cannot be encoded.
// TypeError: (102-103): This type cannot be encoded.
// TypeError: (105-115): This type cannot be encoded.
// TypeError: (117-126): This type cannot be encoded.