solidity/test/libsolidity/syntaxTests/specialFunctions/types_without_encoding_problems.sol
2018-05-16 09:48:03 +02:00

10 lines
185 B
Solidity

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