solidity/test/libsolidity/syntaxTests/specialFunctions/types_without_encoding_problems.sol

10 lines
185 B
Solidity
Raw Normal View History

contract C {
uint[3] sarr;
function f() view public {
uint[3] memory arr;
2018-05-15 10:53:23 +00:00
bytes32 h = keccak256(abi.encodePacked(this.f, arr, sarr));
h;
}
}
// ----