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

10 lines
167 B
Solidity
Raw Normal View History

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